* gdb.base/stack-checking.c (big_frame): Reduce stack consumption

on SPU.
This commit is contained in:
Ulrich Weigand 2008-09-11 16:24:17 +00:00
parent 3c35e65b00
commit 9990c83091
2 changed files with 9 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2008-09-11 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
* gdb.base/stack-checking.c (big_frame): Reduce stack consumption
on SPU.
2008-09-10 Joel Brobecker <brobecker@adacore.com>
* gdb.ada/Makefile.in (EXECUTABLES): Bring up to date.

View File

@ -36,7 +36,11 @@ void medium_frame ()
void big_frame ()
{
#ifdef __SPU__
char S [131072];
#else
char S [524188];
#endif
small_frame ();
}