new cp_error040: Input of asm node becomes a NULL pointer
authorMoritz Kroll <Moritz.Kroll@gmx.de>
Tue, 5 Aug 2008 12:59:43 +0000 (12:59 +0000)
committerMoritz Kroll <Moritz.Kroll@gmx.de>
Tue, 5 Aug 2008 12:59:43 +0000 (12:59 +0000)
[r20991]

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

diff --git a/parsetest/cp_error040.c b/parsetest/cp_error040.c
new file mode 100644 (file)
index 0000000..9f134e6
--- /dev/null
@@ -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;
+}