aboutsummaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
authorlemon <lsof@mailbox.org>2025-11-23 20:20:31 +0100
committerlemon <lsof@mailbox.org>2025-11-23 20:20:31 +0100
commitd79251d487b57ea0e3b10640747eed723a06365c (patch)
treecb64e63b22c1bc7b5bf6305aa24dd26a82eadc83 /test
parent0b77ae0eda8d3abca659f816040021a82a456e81 (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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/flt.c b/test/flt.c
index 7866c10..2ae773d 100644
--- a/test/flt.c
+++ b/test/flt.c
@@ -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; }