Commit f79de13a by Richard Biener Committed by Richard Biener

scop-4.c: Avoid out-of-bound access.

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

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

From-SVN: r265385
parent 39c61276
2018-10-22 Richard Biener <rguenther@suse.de>
* gcc.dg/graphite/scop-4.c: Avoid out-of-bound access.
2018-10-22 Eric Botcazou <ebotcazou@adacore.com>
* gnat.dg/sso14.adb: New test.
......
......@@ -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++)
......
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