From: Moritz Kroll Date: Tue, 5 Aug 2008 12:59:43 +0000 (+0000) Subject: new cp_error040: Input of asm node becomes a NULL pointer X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=26c9f43fe0592d84d28858587ac124e20b3343d0;p=cparser new cp_error040: Input of asm node becomes a NULL pointer [r20991] --- diff --git a/parsetest/cp_error040.c b/parsetest/cp_error040.c new file mode 100644 index 0000000..9f134e6 --- /dev/null +++ b/parsetest/cp_error040.c @@ -0,0 +1,12 @@ +long lrint (double x) +{ + long retval; + __asm__ __volatile__ + ("fistpl %0" : "=m" (retval) : "t" (x) : "st"); + return retval; +} + +int main(void) +{ + return 0; +}