mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-03 21:51:45 +08:00
s390.c (s390_init_frame_layout): Check positive frame_size.
2006-10-26 Andreas Krebbel <krebbel1@de.ibm.com> * config/s390/s390.c (s390_init_frame_layout): Check positive frame_size. 2006-10-26 Andreas Krebbel <krebbel1@de.ibm.com> * gcc.dg/20061026.c: New testcase. From-SVN: r118062
This commit is contained in:
parent
ac2de15d44
commit
20f04e65e3
@ -1,3 +1,8 @@
|
||||
2006-10-26 Andreas Krebbel <krebbel1@de.ibm.com>
|
||||
|
||||
* config/s390/s390.c (s390_init_frame_layout): Check positive
|
||||
frame_size.
|
||||
|
||||
2006-10-26 Ben Elliston <bje@au.ibm.com>
|
||||
|
||||
* gimplify.c (get_name): Remove extraneous break.
|
||||
|
@ -6718,8 +6718,8 @@ s390_init_frame_layout (void)
|
||||
/* Try to predict whether we'll need the base register. */
|
||||
base_used = cfun->machine->split_branches_pending_p
|
||||
|| current_function_uses_const_pool
|
||||
|| (!DISP_IN_RANGE (-frame_size)
|
||||
&& !CONST_OK_FOR_K (-frame_size));
|
||||
|| (!DISP_IN_RANGE (frame_size)
|
||||
&& !CONST_OK_FOR_K (frame_size));
|
||||
|
||||
/* Decide which register to use as literal pool base. In small
|
||||
leaf functions, try to use an unused call-clobbered register
|
||||
|
@ -1,3 +1,7 @@
|
||||
2006-10-26 Andreas Krebbel <krebbel1@de.ibm.com>
|
||||
|
||||
* gcc.dg/20061026.c: New testcase.
|
||||
|
||||
2006-10-26 Jerry DeLisle <jvdelisle@gcc.gnu.org>
|
||||
|
||||
PR libgfortran/29563
|
||||
|
13
gcc/testsuite/gcc.dg/20061026.c
Normal file
13
gcc/testsuite/gcc.dg/20061026.c
Normal file
@ -0,0 +1,13 @@
|
||||
/* { dg-do compile } */
|
||||
/* { dg-options "-O1" } */
|
||||
|
||||
/* This testcase failed on s390. The frame size for function f will be
|
||||
exactly 32768 bytes. The back end has to recognize that this is to
|
||||
large for a 16bit constant and therefore should reserve the literal
|
||||
pool base pointer. */
|
||||
|
||||
int f () {
|
||||
char a[32608];
|
||||
|
||||
g (a);
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user