diff options
Diffstat (limited to 'test/uint64-to-float.c')
-rw-r--r-- | test/uint64-to-float.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/uint64-to-float.c b/test/uint64-to-float.c new file mode 100644 index 0000000..b4e7fc6 --- /dev/null +++ b/test/uint64-to-float.c @@ -0,0 +1,4 @@ +unsigned long long g(void); +float f(void) { + return g(); +} |