diff options
author | Tobias Grosser <tobias@grosser.es> | 2015-08-11 11:31:18 +0000 |
---|---|---|
committer | Tobias Grosser <tobias@grosser.es> | 2015-08-11 11:31:18 +0000 |
commit | 6e3ba33b0785727b63c6daef12335c4f5e240c27 (patch) | |
tree | 0848b6e7c4d0aa04447df6bd13acdeb1a3d48c2e /polly/lib/External/isl/test_inputs/codegen/omega/iter9-0.c | |
parent | d353c45eafd1754f0c37bdc8960635e98a60e2db (diff) | |
download | bcm5719-llvm-6e3ba33b0785727b63c6daef12335c4f5e240c27.tar.gz bcm5719-llvm-6e3ba33b0785727b63c6daef12335c4f5e240c27.zip |
Update isl to isl-0.15-117-ge42acfe
Besides other changes this version of isl contains a fundamental fix to memory
corruption issues we have seen with imath-32 backed isl_ints.
This update also contains a fix that ensures that the schedule-tree based
version of isl's dependence analysis takes the domain of the schedule into
account.
llvm-svn: 244585
Diffstat (limited to 'polly/lib/External/isl/test_inputs/codegen/omega/iter9-0.c')
-rw-r--r-- | polly/lib/External/isl/test_inputs/codegen/omega/iter9-0.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/polly/lib/External/isl/test_inputs/codegen/omega/iter9-0.c b/polly/lib/External/isl/test_inputs/codegen/omega/iter9-0.c index 4f268a6a767..d25a354a4dc 100644 --- a/polly/lib/External/isl/test_inputs/codegen/omega/iter9-0.c +++ b/polly/lib/External/isl/test_inputs/codegen/omega/iter9-0.c @@ -6,6 +6,6 @@ for (int c0 = 1; c0 <= 15; c0 += 1) { s2(c0); s1(c0); } - if (((-exprVar1 + 15) % 8) + c0 <= 15 || (c0 >= 9 && (exprVar1 - c0 + 1) % 8 == 0)) + if (((-exprVar1 + 15) % 8) + c0 <= 15 || (exprVar1 - c0 + 1) % 8 == 0) s5(c0); } |