mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-20 11:08:27 +00:00
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
This commit is contained in:
parent
6ca7f41f5b
commit
4c12ee5f61
@ -130,6 +130,7 @@ namespace {
|
|||||||
(void) llvm::createDbgInfoPrinterPass();
|
(void) llvm::createDbgInfoPrinterPass();
|
||||||
(void) llvm::createPartialInliningPass();
|
(void) llvm::createPartialInliningPass();
|
||||||
(void) llvm::createSSIPass();
|
(void) llvm::createSSIPass();
|
||||||
|
(void) llvm::createSSIEverythingPass();
|
||||||
|
|
||||||
(void)new llvm::IntervalPartition();
|
(void)new llvm::IntervalPartition();
|
||||||
(void)new llvm::FindUsedTypes();
|
(void)new llvm::FindUsedTypes();
|
||||||
|
@ -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();
|
FunctionPass *createSSIPass();
|
||||||
|
|
||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
//
|
||||||
|
// SSI - This pass converts every non-void instuction to Static Single
|
||||||
|
// Information form.
|
||||||
|
//
|
||||||
|
FunctionPass *createSSIEverythingPass();
|
||||||
|
|
||||||
} // End llvm namespace
|
} // End llvm namespace
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user