This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] Fix testcase


Committed.

2018-10-22  Richard Biener  <rguenther@suse.de>

	* gcc.dg/graphite/scop-4.c: Avoid out-of-bound access.

Index: gcc/testsuite/gcc.dg/graphite/scop-4.c
===================================================================
--- gcc/testsuite/gcc.dg/graphite/scop-4.c	(revision 265315)
+++ gcc/testsuite/gcc.dg/graphite/scop-4.c	(working copy)
@@ -3,7 +3,7 @@ void bar ();
 int toto()
 {
   int i, j, k;
-  int a[100][100];
+  int a[100][200];
   int b[100];
 
   for (i = 1; i < 100; i++)


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]