We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad86b77 commit dd3f7b2Copy full SHA for dd3f7b2
flang/test/Driver/loop-interchange.f90
@@ -8,6 +8,10 @@
8
! RUN: %flang -### -S -Oz %s 2>&1 | FileCheck -check-prefix=CHECK-NO-LOOP-INTERCHANGE %s
9
! CHECK-LOOP-INTERCHANGE: "-floop-interchange"
10
! CHECK-NO-LOOP-INTERCHANGE-NOT: "-floop-interchange"
11
+! RUN: %flang_fc1 -emit-llvm -O2 -floop-interchange -mllvm -print-pipeline-passes -o /dev/null %s 2>&1 | FileCheck -check-prefix=CHECK-LOOP-INTERCHANGE-PASS %s
12
+! RUN: %flang_fc1 -emit-llvm -O2 -fno-loop-interchange -mllvm -print-pipeline-passes -o /dev/null %s 2>&1 | FileCheck -check-prefix=CHECK-NO-LOOP-INTERCHANGE-PASS %s
13
+! CHECK-LOOP-INTERCHANGE-PASS: loop-interchange
14
+! CHECK-NO-LOOP-INTERCHANGE-PASS-NOT: loop-interchange
15
16
program test
17
end program
0 commit comments