Add -fno-experimental-pass-manager to make clear which pass manager
authorEric Christopher <echristo@gmail.com>
Mon, 14 Oct 2019 23:01:48 +0000 (23:01 +0000)
committerEric Christopher <echristo@gmail.com>
Mon, 14 Oct 2019 23:01:48 +0000 (23:01 +0000)
we're running and to make flipping the default not regress testing.

llvm-svn: 374840

clang/test/Misc/loop-opt-setup.c

index 8d3835b..f283e80 100644 (file)
@@ -1,5 +1,5 @@
 // RUN: %clang -O1 -fexperimental-new-pass-manager -fno-unroll-loops -S -o - %s -emit-llvm | FileCheck %s
-// RUN: %clang -O1 -fno-unroll-loops -S -o - %s -emit-llvm | FileCheck %s
+// RUN: %clang -O1 -fno-experimental-new-pass-manager -fno-unroll-loops -S -o - %s -emit-llvm | FileCheck %s
 extern int a[16];
 int b = 0;
 int foo(void) {