Crash in edgfe, probably caused by asm =m constraint.
authorChristoph Mallon <christoph.mallon@gmx.de>
Thu, 14 Aug 2008 09:07:52 +0000 (09:07 +0000)
committerChristoph Mallon <christoph.mallon@gmx.de>
Thu, 14 Aug 2008 09:07:52 +0000 (09:07 +0000)
[r21158]

ir/be/test/fehler134.c [new file with mode: 0644]

diff --git a/ir/be/test/fehler134.c b/ir/be/test/fehler134.c
new file mode 100644 (file)
index 0000000..d4637cd
--- /dev/null
@@ -0,0 +1,6 @@
+int main(void)
+{
+       int x = 1;
+       asm("mov $0, %0" : "=m" (x));
+       return x;
+}