demonstrates \!chunk->deleted assertion
authorMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Sat, 25 Oct 2008 19:07:37 +0000 (19:07 +0000)
committerMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Sat, 25 Oct 2008 19:07:37 +0000 (19:07 +0000)
[r23182]

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

diff --git a/ir/be/test/fehler161.c b/ir/be/test/fehler161.c
new file mode 100644 (file)
index 0000000..c036827
--- /dev/null
@@ -0,0 +1,14 @@
+/*$ -O4 -march=core2 $*/
+#include <alloca.h>
+
+extern void print_spelling(char *text);
+
+void test (void)
+{
+       char *temp = (char *) alloca (16);
+       print_spelling (temp);
+}
+
+int main(int argc, char *argv[]) {
+       return 0;
+}