blob: 6c4fbc493143e5eabb687d2b07190aaa02cd701c [file] [log] [blame]
/* 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));
}