1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-02-01 05:01:59 +01:00

Forgot a couple files when adding the -ssi-everything pass.

llvm-svn: 75136
This commit is contained in:
Nick Lewycky 2009-07-09 15:33:55 +00:00
parent 02ee56adb2
commit 98ec5dd5cc
2 changed files with 10 additions and 1 deletions

View File

@ -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();

View File

@ -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