From: Michael Beck Date: Mon, 1 Sep 2008 00:05:35 +0000 (+0000) Subject: add test for hexfloats X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=0d6999948dd1f788a7d681f96f2597dc1ea1ae4d;p=cparser add test for hexfloats [r21609] --- diff --git a/parsetest/hexfloat.c b/parsetest/hexfloat.c new file mode 100644 index 0000000..1212725 --- /dev/null +++ b/parsetest/hexfloat.c @@ -0,0 +1,6 @@ +#include + +int main(int argc, char *argv[]) { + printf("%f\n", 0x1.fp3); + return 0; +}