diff options
author | Tobias Grosser <tobias@grosser.es> | 2015-03-19 07:27:29 +0000 |
---|---|---|
committer | Tobias Grosser <tobias@grosser.es> | 2015-03-19 07:27:29 +0000 |
commit | 1de4e381ca058f8afa2c2b47d33f28e7a055eb0b (patch) | |
tree | 71c02ad56db29f7832bf49147ba2f94420c29da6 /polly/lib/External/isl/test_inputs/codegen/cloog/gauss.c | |
parent | 91141e87b1459035f54220be68b2d66112637ed1 (diff) | |
download | bcm5719-llvm-1de4e381ca058f8afa2c2b47d33f28e7a055eb0b.tar.gz bcm5719-llvm-1de4e381ca058f8afa2c2b47d33f28e7a055eb0b.zip |
Update isl to 94d707d
The major improvements are:
- Extended schedule tree support
- AST generation from schedule trees
llvm-svn: 232709
Diffstat (limited to 'polly/lib/External/isl/test_inputs/codegen/cloog/gauss.c')
-rw-r--r-- | polly/lib/External/isl/test_inputs/codegen/cloog/gauss.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/polly/lib/External/isl/test_inputs/codegen/cloog/gauss.c b/polly/lib/External/isl/test_inputs/codegen/cloog/gauss.c index 13a8e137173..4bbe42cb500 100644 --- a/polly/lib/External/isl/test_inputs/codegen/cloog/gauss.c +++ b/polly/lib/External/isl/test_inputs/codegen/cloog/gauss.c @@ -1,7 +1,7 @@ for (int c0 = 1; c0 < M; c0 += 1) for (int c1 = c0 + 1; c1 <= M; c1 += 1) { - for (int c3 = c0 + 1; c3 <= M; c3 += 1) - S2(c0, c3, c1); for (int c3 = 1; c3 < c0; c3 += 1) S1(c0, c3, c1); + for (int c3 = c0 + 1; c3 <= M; c3 += 1) + S2(c0, c3, c1); } |