From: Christoph Mallon Date: Sat, 23 Aug 2008 13:20:45 +0000 (+0000) Subject: fehler137: tarval module does not model the explicit leading 1 for long double on... X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;ds=sidebyside;h=ccdf802c598f7adc5e35fff42fed029c59f48a57;p=libfirm fehler137: tarval module does not model the explicit leading 1 for long double on x86. [r21383] --- diff --git a/ir/be/test/fehler137.c b/ir/be/test/fehler137.c new file mode 100644 index 000000000..170dd1618 --- /dev/null +++ b/ir/be/test/fehler137.c @@ -0,0 +1,7 @@ +long double ld = 1; + +int main(void) +{ + printf("%Lf (1.000000)\n", ld); + return 0; +}