diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 0fb031be860a..49cacbbef7c6 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2005-07-31 Richard Sandiford + + PR target/20621 + * gcc.c-torture/execute/pr20621-1.c: New test. + 2005-07-30 Thomas Koenig * gfortran.dg/comma_format_extension_4.f: Adjust length diff --git a/gcc/testsuite/gcc.c-torture/execute/pr20621-1.c b/gcc/testsuite/gcc.c-torture/execute/pr20621-1.c new file mode 100644 index 000000000000..79901871d573 --- /dev/null +++ b/gcc/testsuite/gcc.c-torture/execute/pr20621-1.c @@ -0,0 +1,6 @@ +/* When generating o32 MIPS PIC, main's $gp save slot was out of range + of a single load instruction. */ +struct big { int i[sizeof (int) >= 4 && sizeof (void *) >= 4 ? 0x4000 : 4]; }; +struct big gb; +int foo (struct big b, int x) { return b.i[x]; } +int main (void) { return foo (gb, 0) + foo (gb, 1); }