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