From 26c9f43fe0592d84d28858587ac124e20b3343d0 Mon Sep 17 00:00:00 2001 From: Moritz Kroll Date: Tue, 5 Aug 2008 12:59:43 +0000 Subject: [PATCH] new cp_error040: Input of asm node becomes a NULL pointer [r20991] --- parsetest/cp_error040.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 parsetest/cp_error040.c 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; +} -- 2.20.1