re PR testsuite/34889 (gcc.c-torture/execute/builtins/pr23484-chk.c fails on 16 bit integer platforms)

PR testsuite/34889
* gcc.c-torture/execute/builtins/pr23484-chk.c : Correct test for 16bit int target.

From-SVN: r135694
This commit is contained in:
Andy Hutchinson 2008-05-20 23:56:28 +00:00 committed by Andy Hutchinson
parent 5f7a858270
commit 77b4cc3594
2 changed files with 12 additions and 0 deletions

View File

@ -1,3 +1,9 @@
2008-05-20 Andy Hutchinson <hutchinsonandy@aim.com>
PR testsuite/34889
* gcc.c-torture/execute/builtins/pr23484-chk.c : Correct test for
16bit int target.
2008-05-20 Andy Hutchinson <hutchinsonandy@aim.com>
* gcc.dg/tree-ssa/ifc-20040816-1.c : signal.h not required.

View File

@ -41,9 +41,15 @@ test1 (void)
abort ();
memset (buf, 'L', sizeof (buf));
#if(__SIZEOF_INT__ >= 4)
if (snprintf (buf, l1 ? sizeof (buf) : 4, "%d", l1 + 65536) != 5
|| memcmp (buf, "655\0LLLL", 8))
abort ();
#else
if (snprintf (buf, l1 ? sizeof (buf) : 4, "%d", l1 + 32700) != 5
|| memcmp (buf, "327\0LLLL", 8))
abort ();
#endif
if (chk_calls)
abort ();