diff options
author | Michael Kruse <llvm@meinersbur.de> | 2016-05-04 14:41:36 +0000 |
---|---|---|
committer | Michael Kruse <llvm@meinersbur.de> | 2016-05-04 14:41:36 +0000 |
commit | e0b34f366f6714cfa31a9ce571c2bad0907ebc7f (patch) | |
tree | 67aa687825d57befe37130a76cbfcd54f1d0c73c /polly/lib/External/isl/test_inputs/codegen/isolate2.c | |
parent | de2c76ed736b6a38c5d281feda5f84879b6067ad (diff) | |
download | bcm5719-llvm-e0b34f366f6714cfa31a9ce571c2bad0907ebc7f.tar.gz bcm5719-llvm-e0b34f366f6714cfa31a9ce571c2bad0907ebc7f.zip |
Update to ISL 0.17.
This release includes sevaral improvments compared to the previous
version isl-0.16.1-145-g243bf7c (from the ISL 0.17 announcement):
- optionally combine SCCs incrementally in scheduler
- optionally maximize coincidence in scheduler
- optionally avoid loop coalescing in scheduler
- minor AST generator improvements
- improve support for expansions in schedule trees
llvm-svn: 268500
Diffstat (limited to 'polly/lib/External/isl/test_inputs/codegen/isolate2.c')
-rw-r--r-- | polly/lib/External/isl/test_inputs/codegen/isolate2.c | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/polly/lib/External/isl/test_inputs/codegen/isolate2.c b/polly/lib/External/isl/test_inputs/codegen/isolate2.c index fda80332719..2c9e15d0dd5 100644 --- a/polly/lib/External/isl/test_inputs/codegen/isolate2.c +++ b/polly/lib/External/isl/test_inputs/codegen/isolate2.c @@ -2,12 +2,10 @@ for (int c0 = 0; c0 <= 99; c0 += 1) { if (c0 >= 4 && c0 <= 6) { for (int c1 = 0; c1 <= 99; c1 += 1) A(c0, c1); - } else if (c0 >= 7 || c0 <= 3) { - if (c0 >= 7) { - for (int c1 = 0; c1 <= 99; c1 += 1) - A(c0, c1); - } else - for (int c1 = 0; c1 <= 99; c1 += 1) - A(c0, c1); - } + } else if (c0 >= 7) { + for (int c1 = 0; c1 <= 99; c1 += 1) + A(c0, c1); + } else + for (int c1 = 0; c1 <= 99; c1 += 1) + A(c0, c1); } |