summaryrefslogtreecommitdiffstats
path: root/polly/lib/External/isl/test_inputs/codegen/unroll10.c
diff options
context:
space:
mode:
Diffstat (limited to 'polly/lib/External/isl/test_inputs/codegen/unroll10.c')
-rw-r--r--polly/lib/External/isl/test_inputs/codegen/unroll10.c29
1 files changed, 29 insertions, 0 deletions
diff --git a/polly/lib/External/isl/test_inputs/codegen/unroll10.c b/polly/lib/External/isl/test_inputs/codegen/unroll10.c
new file mode 100644
index 00000000000..061954ef628
--- /dev/null
+++ b/polly/lib/External/isl/test_inputs/codegen/unroll10.c
@@ -0,0 +1,29 @@
+if (m >= 1 && n >= 1) {
+ A(0);
+ if (m >= 2 && n >= 2) {
+ A(1);
+ if (m >= 3 && n >= 3) {
+ A(2);
+ if (m >= 4 && n >= 4) {
+ A(3);
+ if (m >= 5 && n >= 5) {
+ A(4);
+ if (m >= 6 && n >= 6) {
+ A(5);
+ if (m >= 7 && n >= 7) {
+ A(6);
+ if (m >= 8 && n >= 8) {
+ A(7);
+ if (m >= 9 && n >= 9) {
+ A(8);
+ if (m >= 10 && n >= 10)
+ A(9);
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+}
OpenPOWER on IntegriCloud