pr26765.c   [plain text]


/* PR target/pr26765
   This testcase used to trigger an unrecognizable insn.  */

/* { dg-do compile } */
/* { dg-options "-O2 -w" } */

__thread int *a = 0;

void foo (void)
{
  extern int *b;
  b = (int *) ((*a));
}