diff options
author | Chris Lattner <sabre@nondot.org> | 2002-07-26 21:12:46 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-07-26 21:12:46 +0000 |
commit | a6275ccdf5e1aa208afde56c498e2b13e16442f0 (patch) | |
tree | 2d1245344fa06c38f7d6a9cd21649b6927d25307 /lib/Transforms/Scalar/SCCP.cpp | |
parent | 1e43516dcf4aa152432447397334cd43744d63e1 (diff) | |
download | external_llvm-a6275ccdf5e1aa208afde56c498e2b13e16442f0.tar.gz external_llvm-a6275ccdf5e1aa208afde56c498e2b13e16442f0.tar.bz2 external_llvm-a6275ccdf5e1aa208afde56c498e2b13e16442f0.zip |
* Add support for different "PassType's"
* Add new RegisterOpt/RegisterAnalysis templates for registering passes that
are to show up in opt or analyze
* Register Analyses now
* Change optimizations to use RegisterOpt instead of RegisterPass
* Add support for different "PassType's"
* Add new RegisterOpt/RegisterAnalysis templates for registering passes that
are to show up in opt or analyze
* Register Analyses now
* Change optimizations to use RegisterOpt instead of RegisterPass
* Remove getPassName implementations from various subclasses
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3113 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Scalar/SCCP.cpp')
-rw-r--r-- | lib/Transforms/Scalar/SCCP.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Scalar/SCCP.cpp b/lib/Transforms/Scalar/SCCP.cpp index b32481e48b..b721ca0965 100644 --- a/lib/Transforms/Scalar/SCCP.cpp +++ b/lib/Transforms/Scalar/SCCP.cpp @@ -220,7 +220,7 @@ private: } }; - RegisterPass<SCCP> X("sccp", "Sparse Conditional Constant Propogation"); + RegisterOpt<SCCP> X("sccp", "Sparse Conditional Constant Propogation"); } // end anonymous namespace |