This commit is contained in:
Folkert 2022-07-24 12:54:55 +02:00
parent 2a91c39ac6
commit 83a878b2f9
No known key found for this signature in database
GPG key ID: 1F17F6FFD112B97C
3 changed files with 8 additions and 8 deletions

View file

@ -8,7 +8,7 @@ use roc_module::symbol::Symbol;
use roc_mono::layout::{Builtin, Layout};
use roc_target::PtrWidth;
use super::bitcode::{call_bitcode_fn, call_str_bitcode_fn_new, BitcodeReturns};
use super::bitcode::{call_bitcode_fn, call_str_bitcode_fn, BitcodeReturns};
use super::build::{create_entry_block_alloca, load_symbol};
pub static CHAR_LAYOUT: Layout = Layout::u8();
@ -130,7 +130,7 @@ pub fn dec_to_str<'a, 'ctx, 'env>(
let right_bits = env.builder.build_int_cast(dec, int_64_type, "");
let left_bits = env.builder.build_int_cast(dec_right_shift, int_64_type, "");
call_str_bitcode_fn_new(
call_str_bitcode_fn(
env,
&[],
&[right_bits.into(), left_bits.into()],