rt_gccstream/gcc/testsuite/gcc.target/mips/pr26765.c

14 lines
228 B
C

/* PR target/pr26765
This testcase used to trigger an unrecognizable insn. */
/* { dg-do compile } */
/* { dg-options "-O2 -w" } */
__thread int *a = 0;
NOMIPS16 void foo (void)
{
extern int *b;
b = (int *) ((*a));
}