demonstrates \!chunk->deleted assertion
[libfirm] / ir / be / test / fehler161.c
1 /*$ -O4 -march=core2 $*/
2 #include <alloca.h>
3
4 extern void print_spelling(char *text);
5
6 void test (void)
7 {
8         char *temp = (char *) alloca (16);
9         print_spelling (temp);
10 }
11
12 int main(int argc, char *argv[]) {
13         return 0;
14 }