update inkwell to ease the llvm13 transition

This commit is contained in:
Folkert 2021-12-08 19:36:29 +01:00
parent 7fb00140c1
commit 40246607aa
8 changed files with 88 additions and 39 deletions

View file

@ -96,7 +96,7 @@ pub fn add_default_roc_externs(env: &Env<'_, '_, '_>) {
// Call libc realloc()
let call = builder.build_call(
libc_realloc_val,
&[ptr_arg, new_size_arg],
&[ptr_arg.into(), new_size_arg.into()],
"call_libc_realloc",
);