diff options
author | Eric Christopher <echristo@gmail.com> | 2019-10-14 23:01:48 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2019-10-14 23:01:48 +0000 |
commit | d93d001cbad37b19c7e70c8ed8ec2ac6a7e05940 (patch) | |
tree | 99050e02aa87ca51a58d492aa25ce90f8ecc81db | |
parent | c3649a087141ac6380d5c17b5ad8f68ab827e18d (diff) | |
download | bcm5719-llvm-d93d001cbad37b19c7e70c8ed8ec2ac6a7e05940.tar.gz bcm5719-llvm-d93d001cbad37b19c7e70c8ed8ec2ac6a7e05940.zip |
Add -fno-experimental-pass-manager to make clear which pass manager
we're running and to make flipping the default not regress testing.
llvm-svn: 374840
-rw-r--r-- | clang/test/Misc/loop-opt-setup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/Misc/loop-opt-setup.c b/clang/test/Misc/loop-opt-setup.c index 8d3835b4489..f283e803a7d 100644 --- a/clang/test/Misc/loop-opt-setup.c +++ b/clang/test/Misc/loop-opt-setup.c @@ -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) { |