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 | c8b7092e54f117ce6377568a9e3e0d5edc48392c (patch) | |
tree | 6d71fb1fd09ee03f284867bfe148bc81eb42879b /llvm/lib/Transforms/Instrumentation/EmitFunctions.cpp | |
parent | a2c098598058ae8466f6141804fdba50b758b0fd (diff) | |
download | bcm5719-llvm-c8b7092e54f117ce6377568a9e3e0d5edc48392c.tar.gz bcm5719-llvm-c8b7092e54f117ce6377568a9e3e0d5edc48392c.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
llvm-svn: 3113
Diffstat (limited to 'llvm/lib/Transforms/Instrumentation/EmitFunctions.cpp')
-rw-r--r-- | llvm/lib/Transforms/Instrumentation/EmitFunctions.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Instrumentation/EmitFunctions.cpp b/llvm/lib/Transforms/Instrumentation/EmitFunctions.cpp index 3506cb90566..0218a146a69 100644 --- a/llvm/lib/Transforms/Instrumentation/EmitFunctions.cpp +++ b/llvm/lib/Transforms/Instrumentation/EmitFunctions.cpp @@ -17,7 +17,7 @@ namespace { bool run(Module &M); }; - RegisterPass<EmitFunctionTable> X("emitfuncs", "Emit a Function Table"); + RegisterOpt<EmitFunctionTable> X("emitfuncs", "Emit a Function Table"); } // Create a new pass to add function table |