OSDN Git Service

* gcc.target/mips/octeon-exts-2.c: Compile it with -meb.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.target / mips / pr26765.c
1 /* PR target/pr26765
2    This testcase used to trigger an unrecognizable insn.  */
3
4 /* { dg-do compile } */
5 /* { dg-mips-options "-O2 -w" } */
6
7 __thread int *a = 0;
8
9 NOMIPS16 void foo (void)
10 {
11   extern int *b;
12   b = (int *) ((*a));
13 }