Added test case for pbqp construction: There seems to be missing skip patterns, so...
[libfirm] / ir / be / test / fehler136.c
1 struct X
2 {
3         int x;
4 };
5
6 extern const struct X bla;
7
8 struct X const* const blub[] = { &bla };
9
10 struct X const bla = { 23 };
11
12 int main(void)
13 {
14         return 0;
15 }