diff options
Diffstat (limited to 'gdb/testsuite/gdb.base/stack-checking.c')
-rw-r--r-- | gdb/testsuite/gdb.base/stack-checking.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gdb/testsuite/gdb.base/stack-checking.c b/gdb/testsuite/gdb.base/stack-checking.c index 027d30b..f6891e1 100644 --- a/gdb/testsuite/gdb.base/stack-checking.c +++ b/gdb/testsuite/gdb.base/stack-checking.c @@ -36,7 +36,11 @@ void medium_frame () void big_frame () { +#ifdef __SPU__ + char S [131072]; +#else char S [524188]; +#endif small_frame (); } |