1  /* PR target/pr26765
       2     This testcase used to trigger an unrecognizable insn.  */
       3  
       4  /* { dg-do compile } */
       5  /* { dg-options "-w" } */
       6  
       7  __thread int *a = 0;
       8  
       9  NOMIPS16 void foo (void)
      10  {
      11    extern int *b;
      12    b = (int *) ((*a));
      13  }