From: Nick Clifton Date: Mon, 22 Jun 2015 16:25:08 +0000 (+0000) Subject: isl-ast-gen-if.c (main): Increase size of a array to allow a[50] to be a valid location. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a82484a2ee865542b9c20e4f6c2d080adaf8e38e;p=gcc.git 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 --- 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 07285a92078..2b05c7bb57d 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)