OSDN Git Service

gcc/testsuite/
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.target / mips / pr33256.c
1 /* GCC used to report an ICE for this test because we generated a LO_SUM
2    for an illegitimate constant.  */
3 /* { dg-options "-mabi=64 -msym32 -O2 -EB -mno-abicalls" } */
4 extern unsigned long a[];
5 int b (int);
6
7 int
8 c (void)
9 {
10   return b (a[0]);
11 }