1struct dis386 {
2  const char *x;
3};
4
5static const struct dis386 float_reg[][2] = {
6  { { "fadd" }, { "fadd" } },
7};
8
9void foo(int i, int j)
10{
11  const struct dis386 *dp;
12
13  dp = &float_reg[i - 1][j];
14}
15