diff options
| author | 2025-12-05 19:12:30 +0100 | |
|---|---|---|
| committer | 2025-12-05 19:12:30 +0100 | |
| commit | 2054983775165f3ae50b241aae71ccb4969eade4 (patch) | |
| tree | c588cc7f640aecff20acbd11656ec36f2ce95ff1 /test/flt.c | |
| parent | bb3bc012c9349c05299069ec19d6bee4abacfb77 (diff) | |
test 12-flt
Diffstat (limited to 'test/flt.c')
| -rw-r--r-- | test/flt.c | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/test/flt.c b/test/flt.c deleted file mode 100644 index 04ce3e3..0000000 --- a/test/flt.c +++ /dev/null @@ -1,25 +0,0 @@ -typedef unsigned u32; -typedef signed s32; -typedef float f32; -typedef double f64; -typedef unsigned long long u64; -typedef signed long long s64; - -f32 s32_to_f32(s32 x) { return x; } -f32 u32_to_f32(u32 x) { return x; } -f64 s32_to_f64(s32 x) { return x; } -f64 u32_to_f64(u32 x) { return x; } -f32 s64_to_f32(s64 x) { return x; } -f32 u64_to_f32(u64 x) { return x; } -f64 s64_to_f64(s64 x) { return x; } -f64 u64_to_f64(u64 x) { return x; } -s32 f32_to_s32(f32 x) { return x; } -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; } -s64 f64_to_s64(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; } |