diff options
Diffstat (limited to 'polly/lib/External/isl/test_inputs/codegen/isolate7.c')
-rw-r--r-- | polly/lib/External/isl/test_inputs/codegen/isolate7.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/polly/lib/External/isl/test_inputs/codegen/isolate7.c b/polly/lib/External/isl/test_inputs/codegen/isolate7.c index 95ea699334e..d41ce090127 100644 --- a/polly/lib/External/isl/test_inputs/codegen/isolate7.c +++ b/polly/lib/External/isl/test_inputs/codegen/isolate7.c @@ -14,9 +14,9 @@ } for (int c1 = 0; c1 < n; c1 += 32) { if (n >= c1 + 32) { - for (int c2 = 0; c2 < n % 32; c2 += 1) + for (int c2 = 0; c2 < (n + 32) % 32; c2 += 1) for (int c3 = 0; c3 <= 31; c3 += 1) - S_1(-((n - 1) % 32) + n + c2 - 1, c1 + c3); + S_1(-((n + 32) % 32) + n + c2, c1 + c3); } else for (int c2 = 0; c2 < n - c1; c2 += 1) { for (int c3 = 0; c3 < n - c1; c3 += 1) |