Merged with mainline at revision 128810.
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr33122.c
blobe86254030a6bf32ac0100caafa046461bba5df3d
1 struct dis386 {
2 const char *x;
3 };
5 static const struct dis386 float_reg[][2] = {
6 { { "fadd" }, { "fadd" } },
7 };
9 void foo(int i, int j)
11 const struct dis386 *dp;
13 dp = &float_reg[i - 1][j];