diff options
author | Tobias Grosser <tobias@grosser.es> | 2016-03-25 19:38:18 +0000 |
---|---|---|
committer | Tobias Grosser <tobias@grosser.es> | 2016-03-25 19:38:18 +0000 |
commit | 37034db826ab706ffd9c74c8d5d7474f2700679c (patch) | |
tree | 1b87bb5fde12ac4cdb0276d4e86d57f8cbbde112 /polly/lib/External/isl/test_inputs/codegen/cloog | |
parent | e988af9073dc59d6b158b0b90570b97415ba52a2 (diff) | |
download | bcm5719-llvm-37034db826ab706ffd9c74c8d5d7474f2700679c.tar.gz bcm5719-llvm-37034db826ab706ffd9c74c8d5d7474f2700679c.zip |
Update to isl-0.16.1-145-g243bf7c
Just an import to keep track with the latest version of isl. We are not looking
for specific features.
llvm-svn: 264452
Diffstat (limited to 'polly/lib/External/isl/test_inputs/codegen/cloog')
-rw-r--r-- | polly/lib/External/isl/test_inputs/codegen/cloog/equality.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/polly/lib/External/isl/test_inputs/codegen/cloog/equality.c b/polly/lib/External/isl/test_inputs/codegen/cloog/equality.c index 5fd62076ccc..fa6ff75f0a5 100644 --- a/polly/lib/External/isl/test_inputs/codegen/cloog/equality.c +++ b/polly/lib/External/isl/test_inputs/codegen/cloog/equality.c @@ -1,5 +1,5 @@ for (int c0 = 0; c0 <= 5; c0 += 1) - for (int c1 = min(2 * c0, 4); c1 <= max(2 * c0, 4); c1 += 1) { + for (int c1 = min(4, 2 * c0); c1 <= max(4, 2 * c0); c1 += 1) { if (c1 == 2 * c0) S1(c0, 2 * c0); if (c1 == 4) |