PR tree-optimization/81303
[official-gcc.git] / gcc / testsuite / gcc.dg / 20061026.c
blob741ea2eb3b860b83ed06941a5bba32b1fb3857bc
1 /* { dg-do compile } */
2 /* { dg-options "-O1" } */
4 /* This testcase failed on s390. The frame size for function f will be
5 exactly 32768 bytes. The back end has to recognize that this is to
6 large for a 16bit constant and therefore should reserve the literal
7 pool base pointer. */
9 void g ();
11 int f () {
12 char a[32608];
14 g (a);