diff options
author | Nick Lewycky <nicholas@mxc.ca> | 2009-07-09 15:33:55 +0000 |
---|---|---|
committer | Nick Lewycky <nicholas@mxc.ca> | 2009-07-09 15:33:55 +0000 |
commit | 726eccdc4ff47b48eeec4b66a32549efe8ef3ecd (patch) | |
tree | 46bba13518111c960045d2a2d6eaf73c30622842 /include | |
parent | 09b2978da2d8750abc8c80a3d6618b8b497435db (diff) | |
download | external_llvm-726eccdc4ff47b48eeec4b66a32549efe8ef3ecd.zip external_llvm-726eccdc4ff47b48eeec4b66a32549efe8ef3ecd.tar.gz external_llvm-726eccdc4ff47b48eeec4b66a32549efe8ef3ecd.tar.bz2 |
Forgot a couple files when adding the -ssi-everything pass.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75136 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/LinkAllPasses.h | 1 | ||||
-rw-r--r-- | include/llvm/Transforms/Scalar.h | 10 |
2 files changed, 10 insertions, 1 deletions
diff --git a/include/llvm/LinkAllPasses.h b/include/llvm/LinkAllPasses.h index e199758..4891f24 100644 --- a/include/llvm/LinkAllPasses.h +++ b/include/llvm/LinkAllPasses.h @@ -130,6 +130,7 @@ namespace { (void) llvm::createDbgInfoPrinterPass(); (void) llvm::createPartialInliningPass(); (void) llvm::createSSIPass(); + (void) llvm::createSSIEverythingPass(); (void)new llvm::IntervalPartition(); (void)new llvm::FindUsedTypes(); diff --git a/include/llvm/Transforms/Scalar.h b/include/llvm/Transforms/Scalar.h index 29cd3e3..2054733 100644 --- a/include/llvm/Transforms/Scalar.h +++ b/include/llvm/Transforms/Scalar.h @@ -339,10 +339,18 @@ extern const PassInfo *const InstructionNamerID; //===----------------------------------------------------------------------===// // -// SSI - This pass converts to Static Single Information form. +// SSI - This pass converts instructions to Static Single Information form +// on demand. // FunctionPass *createSSIPass(); +//===----------------------------------------------------------------------===// +// +// SSI - This pass converts every non-void instuction to Static Single +// Information form. +// +FunctionPass *createSSIEverythingPass(); + } // End llvm namespace #endif |