From: mrs Date: Thu, 1 Jan 2015 01:44:11 +0000 (+0000) Subject: 2014-12-31 James Bowman X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d57044f22a371f74e26c7ee83b3b9149d2435747;p=thirdparty%2Fgcc.git 2014-12-31 James Bowman * gcc.c-torture/execute/pr20621-1.c: Pass if stack < 64K. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@219134 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index c831ce348aff..3e8fdc2ea324 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2014-12-31 James Bowman + + * gcc.c-torture/execute/pr20621-1.c: Pass if stack < 64K. + 2014-12-31 David Edelsohn * lib/target-supports.exp (add_options_for_tls): Prepend pthread diff --git a/gcc/testsuite/gcc.c-torture/execute/pr20621-1.c b/gcc/testsuite/gcc.c-torture/execute/pr20621-1.c index 79901871d573..57b3df764b75 100644 --- a/gcc/testsuite/gcc.c-torture/execute/pr20621-1.c +++ b/gcc/testsuite/gcc.c-torture/execute/pr20621-1.c @@ -3,4 +3,8 @@ 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]; } +#if defined(STACK_SIZE) && STACK_SIZE <= 0x10000 +int main (void) { return 0; } +#else int main (void) { return foo (gb, 0) + foo (gb, 1); } +#endif