mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-30 15:21:12 +00:00
Add LLVM implementation for toF32/64
This commit is contained in:
parent
605a8d39e9
commit
a4233ad661
2 changed files with 35 additions and 7 deletions
|
@ -266,6 +266,10 @@ pub fn builtin_defs_map(symbol: Symbol, var_store: &mut VarStore) -> Option<Def>
|
|||
NUM_TO_U128_CHECKED => num_to_u128_checked,
|
||||
NUM_TO_NAT => num_to_nat,
|
||||
NUM_TO_NAT_CHECKED => num_to_nat_checked,
|
||||
NUM_TO_F32 => num_to_f32,
|
||||
NUM_TO_F32_CHECKED => num_to_f32_checked,
|
||||
NUM_TO_F64 => num_to_f64,
|
||||
NUM_TO_F64_CHECKED => num_to_f64_checked,
|
||||
NUM_TO_STR => num_to_str,
|
||||
RESULT_MAP => result_map,
|
||||
RESULT_MAP_ERR => result_map_err,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue