aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/cilk-plus/array_notation_tests/compile/array_test2.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gcc.dg/cilk-plus/array_notation_tests/compile/array_test2.c')
-rw-r--r--gcc/testsuite/gcc.dg/cilk-plus/array_notation_tests/compile/array_test2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/testsuite/gcc.dg/cilk-plus/array_notation_tests/compile/array_test2.c b/gcc/testsuite/gcc.dg/cilk-plus/array_notation_tests/compile/array_test2.c
index 5fb3680c25c..fd128b1c589 100644
--- a/gcc/testsuite/gcc.dg/cilk-plus/array_notation_tests/compile/array_test2.c
+++ b/gcc/testsuite/gcc.dg/cilk-plus/array_notation_tests/compile/array_test2.c
@@ -26,7 +26,7 @@ int main(int argc, char **argv)
array[ii] = 10;
array2[ii] = 5000000;
}
- array2[0:10:2] = array[0:10:2];
+ array2[0:5:2] = array[0:5:2];
printf("==============================================\n");
for (ii = 0; ii<10; ii++)