Fixed: Actually calling llvm we generate

This commit is contained in:
Joshua Hoeflich 2021-08-14 18:20:11 -05:00
parent ce8f947522
commit 744fefc3a1
4 changed files with 5 additions and 4 deletions

View file

@ -6061,6 +6061,7 @@ fn build_float_unary_op<'a, 'ctx, 'env>(
NumAtan => call_bitcode_fn(env, &[arg.into()], bitcode::NUM_ATAN),
NumAcos => call_bitcode_fn(env, &[arg.into()], bitcode::NUM_ACOS),
NumAsin => call_bitcode_fn(env, &[arg.into()], bitcode::NUM_ASIN),
NumBytesToU16 => call_bitcode_fn(env, &[arg.into()], bitcode::NUM_BYTES_TO_U16),
_ => {
unreachable!("Unrecognized int unary operation: {:?}", op);
}