demonstartes a bug in the tarval module
[libfirm] / ir / be / test / fehler105.c
1 /* frontend crashs on missing return in compound returning function */
2 struct A {
3         int a, b;
4 };
5
6 struct A func(void)
7 {
8 }
9
10 int main(void)
11 {
12         return 0;
13 }