summaryrefslogtreecommitdiff
path: root/test_inputs/codegen/separation_class2.c
diff options
context:
space:
mode:
Diffstat (limited to 'test_inputs/codegen/separation_class2.c')
-rw-r--r--test_inputs/codegen/separation_class2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test_inputs/codegen/separation_class2.c b/test_inputs/codegen/separation_class2.c
index 2bddda28..3ea48aff 100644
--- a/test_inputs/codegen/separation_class2.c
+++ b/test_inputs/codegen/separation_class2.c
@@ -10,6 +10,6 @@
}
for (int c1 = 0; c1 < n; c1 += 8)
for (int c2 = 0; c2 < n % 8; c2 += 1)
- for (int c3 = 0; c3 <= min(n - c1 - 1, 7); c3 += 1)
+ for (int c3 = 0; c3 <= min(7, n - c1 - 1); c3 += 1)
A(-((n - 1) % 8) + n + c2 - 1, c1 + c3);
}