diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2015-01-13 22:45:13 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2015-01-13 22:45:13 +0000 |
commit | 703378f15646e01193f2aaa0bbf876d27de4b78d (patch) | |
tree | f58e57a92737f8eee95b9460fb88b5b9f333f251 /llvm/test/Other/pass-pipeline-parsing.ll | |
parent | 14a759e3d99c341c70347800206762be1bc84b28 (diff) | |
download | bcm5719-llvm-703378f15646e01193f2aaa0bbf876d27de4b78d.tar.gz bcm5719-llvm-703378f15646e01193f2aaa0bbf876d27de4b78d.zip |
[PM] Remove the defunt CGSCC-specific debug flag.
Even before I sunk the debug flag into the opt tool this had been made
obsolete by factoring the pass and analysis managers into a single set
of templates that all used the core flag. No functionality changed here.
llvm-svn: 225842
Diffstat (limited to 'llvm/test/Other/pass-pipeline-parsing.ll')
-rw-r--r-- | llvm/test/Other/pass-pipeline-parsing.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/Other/pass-pipeline-parsing.ll b/llvm/test/Other/pass-pipeline-parsing.ll index 0b49eb7d214..da0e7604003 100644 --- a/llvm/test/Other/pass-pipeline-parsing.ll +++ b/llvm/test/Other/pass-pipeline-parsing.ll @@ -101,7 +101,7 @@ ; RUN: | FileCheck %s --check-prefix=CHECK-UNBALANCED10 ; CHECK-UNBALANCED10: unable to parse pass pipeline description -; RUN: opt -disable-output -debug-pass-manager -debug-cgscc-pass-manager \ +; RUN: opt -disable-output -debug-pass-manager \ ; RUN: -passes=no-op-cgscc,no-op-cgscc %s 2>&1 \ ; RUN: | FileCheck %s --check-prefix=CHECK-TWO-NOOP-CG ; CHECK-TWO-NOOP-CG: Starting pass manager @@ -112,7 +112,7 @@ ; CHECK-TWO-NOOP-CG: Finished pass manager ; CHECK-TWO-NOOP-CG: Finished pass manager -; RUN: opt -disable-output -debug-pass-manager -debug-cgscc-pass-manager \ +; RUN: opt -disable-output -debug-pass-manager \ ; RUN: -passes='module(function(no-op-function),cgscc(no-op-cgscc,function(no-op-function),no-op-cgscc),function(no-op-function))' %s 2>&1 \ ; RUN: | FileCheck %s --check-prefix=CHECK-NESTED-MP-CG-FP ; CHECK-NESTED-MP-CG-FP: Starting pass manager |