typo
[libfirm] / ir / be / test / fehler155.c
1 struct {
2         int x;
3         int lets[3008];
4 } glob;
5
6 int x = 42;
7
8 int main(void) {
9         int y = glob.lets[5] + glob.lets[x * 3];
10         return y;
11 }