Commit 8b94f596 by Jakub Jelinek Committed by Jakub Jelinek

re PR testsuite/55505 (gcc.c-torture/execute/921202-1.c execution failures with -fsanitize=address)

	PR testsuite/55505
	* gcc.c-torture/execute/921202-1.c: Increase size of dx and dy
	arrays.

From-SVN: r193899
parent c7e20b0b
2012-11-28 Jakub Jelinek <jakub@redhat.com>
PR testsuite/55505
* gcc.c-torture/execute/921202-1.c: Increase size of dx and dy
arrays.
PR testsuite/55504
* gcc.c-torture/execute/20071018-1.c (foo): Add noinline/noclone
attributes. Avoid clobbering memory before malloced chunk.
......
......@@ -5,8 +5,8 @@
#endif
main ()
{
long dx[VLEN];
long dy[VLEN];
long dx[VLEN+1];
long dy[VLEN+1];
long s1[VLEN];
int cyx, cyy;
int i;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment