diff options
Diffstat (limited to 'polly/lib/External/isl/test_inputs/codegen/cloog/equality.c')
-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) |