Forgot to commit these.

llvm-svn: 85180
This commit is contained in:
Owen Anderson 2009-10-26 23:56:52 +00:00
parent 03b5de67b0
commit 95020dfeda
2 changed files with 7 additions and 0 deletions

View File

@ -141,6 +141,7 @@ namespace {
(void) llvm::createSSIPass();
(void) llvm::createSSIEverythingPass();
(void) llvm::createGEPSplitterPass();
(void) llvm::createSCCVNPass();
(void)new llvm::IntervalPartition();
(void)new llvm::FindUsedTypes();

View File

@ -338,6 +338,12 @@ FunctionPass *createSSIEverythingPass();
//
FunctionPass *createGEPSplitterPass();
//===----------------------------------------------------------------------===//
//
// SCCVN - Aggressively eliminate redundant scalar values
//
FunctionPass *createSCCVNPass();
} // End llvm namespace
#endif