mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-29 06:44:46 +00:00
Update some docs and names
This commit is contained in:
parent
0b42a902ab
commit
6a6c25d32d
3 changed files with 11 additions and 11 deletions
|
@ -1,5 +1,5 @@
|
|||
use crate::llvm::build::{get_tag_id, tag_pointer_clear_tag_id, Env, FAST_CALL_CONV};
|
||||
use crate::llvm::build_list::{list_len, load_list_ptr};
|
||||
use crate::llvm::build_list::{list_len_usize, load_list_ptr};
|
||||
use crate::llvm::build_str::str_equal;
|
||||
use crate::llvm::convert::basic_type_from_layout;
|
||||
use bumpalo::collections::Vec;
|
||||
|
@ -510,8 +510,8 @@ fn build_list_eq_help<'a, 'ctx>(
|
|||
|
||||
// first, check whether the length is equal
|
||||
|
||||
let len1 = list_len(env.builder, list1);
|
||||
let len2 = list_len(env.builder, list2);
|
||||
let len1 = list_len_usize(env.builder, list1);
|
||||
let len2 = list_len_usize(env.builder, list2);
|
||||
|
||||
let length_equal: IntValue =
|
||||
env.builder
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue