diff options
| author | 2025-11-23 20:20:31 +0100 | |
|---|---|---|
| committer | 2025-11-23 20:20:31 +0100 | |
| commit | d79251d487b57ea0e3b10640747eed723a06365c (patch) | |
| tree | cb64e63b22c1bc7b5bf6305aa24dd26a82eadc83 /test | |
| parent | 0b77ae0eda8d3abca659f816040021a82a456e81 (diff) | |
implement cvtfXu64 by lowering it in builder
this should probably be in a separate pass?
Diffstat (limited to 'test')
| -rw-r--r-- | test/flt.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -18,8 +18,8 @@ u32 f32_to_u32(f32 x) { return x; } s32 f64_to_s32(f64 x) { return x; } u32 f64_to_u32(f64 x) { return x; } s64 f32_to_s64(f32 x) { return x; } -//u64 f32_to_u64(f32 x) { return x; } +u64 f32_to_u64(f32 x) { return x; } s64 f64_to_s64(f64 x) { return x; } -//u64 f64_to_u64(f64 x) { return x; } +u64 f64_to_u64(f64 x) { return x; } f32 f64_to_f32(f64 x) { return x; } f64 f32_to_f64(f32 x) { return x; } |