mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-30 07:14:46 +00:00
Fixed misnamed variable
This commit is contained in:
parent
c2351979e0
commit
8e34373d9f
1 changed files with 1 additions and 1 deletions
|
@ -1568,7 +1568,7 @@ fn list_prepend<'a, 'ctx, 'env>(
|
|||
let int_type = ptr_int(ctx, ptr_bytes);
|
||||
let ptr_as_int = builder.build_ptr_to_int(clone_ptr, int_type, "list_cast_ptr");
|
||||
|
||||
builder.build_store(clone, elem);
|
||||
builder.build_store(clone_ptr, elem);
|
||||
|
||||
let index_1_ptr = unsafe {
|
||||
builder.build_in_bounds_gep(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue