add test for hexfloats
authorMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Mon, 1 Sep 2008 00:05:35 +0000 (00:05 +0000)
committerMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Mon, 1 Sep 2008 00:05:35 +0000 (00:05 +0000)
[r21609]

parsetest/hexfloat.c [new file with mode: 0644]

diff --git a/parsetest/hexfloat.c b/parsetest/hexfloat.c
new file mode 100644 (file)
index 0000000..1212725
--- /dev/null
@@ -0,0 +1,6 @@
+#include <stdio.h>
+
+int main(int argc, char *argv[]) {
+       printf("%f\n", 0x1.fp3);
+       return 0;
+}