fixed comment: get_call_abi() get the call type, NOT the method type of the called...
[libfirm] / ir / be / test / fehler048.c
1 /* Frontend assert while building initialisers */
2
3 union {
4         int i;
5         char a[4];
6 } blub = {
7         .a[2] = 9,
8         .i = 23
9 };
10
11 int main()
12 {
13         return 0;
14 }