From a82484a2ee865542b9c20e4f6c2d080adaf8e38e Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Mon, 22 Jun 2015 16:25:08 +0000 Subject: [PATCH] isl-ast-gen-if.c (main): Increase size of a array to allow a[50] to be a valid location. * gcc.dg/graphite/isl-ast-gen-if.c (main): Increase size of a array to allow a[50] to be a valid location. From-SVN: r224743 --- gcc/testsuite/gcc.dg/graphite/isl-ast-gen-if-1.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/testsuite/gcc.dg/graphite/isl-ast-gen-if-1.c b/gcc/testsuite/gcc.dg/graphite/isl-ast-gen-if-1.c index 07285a920789..2b05c7bb57d7 100644 --- a/gcc/testsuite/gcc.dg/graphite/isl-ast-gen-if-1.c +++ b/gcc/testsuite/gcc.dg/graphite/isl-ast-gen-if-1.c @@ -28,7 +28,7 @@ extern void abort (); int main (void) { - int a[50]; + int a[51]; /* NB This size allows foo's first iteration to write to a[50]. */ foo (a, 50); int res = array_sum (a); if (res != 49) -- 2.47.2