summaryrefslogtreecommitdiffstats
path: root/polly/lib/External/isl/test_inputs/codegen/isolate7.c
diff options
context:
space:
mode:
authorMichael Kruse <llvm@meinersbur.de>2016-01-15 15:54:45 +0000
committerMichael Kruse <llvm@meinersbur.de>2016-01-15 15:54:45 +0000
commit959a8dc39f36150072c4b4551af5d01c37cc126b (patch)
tree86759e68c4a481d87f1a303d4fedd3e6738d139d /polly/lib/External/isl/test_inputs/codegen/isolate7.c
parentf29dfd36bbf2dd234b3c038448b6fd75beb8ade7 (diff)
downloadbcm5719-llvm-959a8dc39f36150072c4b4551af5d01c37cc126b.tar.gz
bcm5719-llvm-959a8dc39f36150072c4b4551af5d01c37cc126b.zip
Update to ISL 0.16.1
llvm-svn: 257898
Diffstat (limited to 'polly/lib/External/isl/test_inputs/codegen/isolate7.c')
-rw-r--r--polly/lib/External/isl/test_inputs/codegen/isolate7.c4
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)
OpenPOWER on IntegriCloud