Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / gcc.c-torture / execute / pr20621-1.c
blob79901871d5739f1b64953833b39dfd95228e9527
1 /* When generating o32 MIPS PIC, main's $gp save slot was out of range
2 of a single load instruction. */
3 struct big { int i[sizeof (int) >= 4 && sizeof (void *) >= 4 ? 0x4000 : 4]; };
4 struct big gb;
5 int foo (struct big b, int x) { return b.i[x]; }
6 int main (void) { return foo (gb, 0) + foo (gb, 1); }