fehler120: Backend discards float->int Conv for shift amount.
[libfirm] / ir / be / test / fehler047.c
1 /* Incorrect values when using C99 style initialisation */
2
3 int tab[] = {
4         [5] = 23
5 };
6
7
8 int main(void)
9 {
10         int i = tab[5];
11         printf("%d (23)\n", i);
12         return i != 23;
13 }