From d79251d487b57ea0e3b10640747eed723a06365c Mon Sep 17 00:00:00 2001 From: lemon Date: Sun, 23 Nov 2025 20:20:31 +0100 Subject: implement cvtfXu64 by lowering it in builder this should probably be in a separate pass? --- test/flt.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/flt.c') 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; } -- cgit v1.2.3