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