diff options
| author | Chris Lattner <sabre@nondot.org> | 2002-01-21 07:31:50 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2002-01-21 07:31:50 +0000 |
| commit | 0686e435d15e5deb21f090f82b654af4d4fe8d22 (patch) | |
| tree | 71828bc8e7232e19c5211b18207ba35ec4d2a6e0 /llvm/lib/Transforms/Instrumentation | |
| parent | e8d81d08192caa4787cd1a0606c6ac93777cc6fd (diff) | |
| download | bcm5719-llvm-0686e435d15e5deb21f090f82b654af4d4fe8d22.tar.gz bcm5719-llvm-0686e435d15e5deb21f090f82b654af4d4fe8d22.zip | |
Implement a more powerful, simpler, pass system. This pass system can figure
out how to run a collection of passes optimially given their behaviors and
charactaristics.
Convert code to use it.
llvm-svn: 1507
Diffstat (limited to 'llvm/lib/Transforms/Instrumentation')
| -rw-r--r-- | llvm/lib/Transforms/Instrumentation/TraceValues.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Instrumentation/TraceValues.cpp b/llvm/lib/Transforms/Instrumentation/TraceValues.cpp index 00acac8d1f7..c778ca8b0df 100644 --- a/llvm/lib/Transforms/Instrumentation/TraceValues.cpp +++ b/llvm/lib/Transforms/Instrumentation/TraceValues.cpp @@ -23,7 +23,7 @@ using std::string; // Add a prototype for printf if it is not already in the program. // -bool InsertTraceCode::doPassInitialization(Module *M) { +bool InsertTraceCode::doInitialization(Module *M) { SymbolTable *ST = M->getSymbolTable(); const Type *SBP = PointerType::get(Type::SByteTy); const MethodType *MTy = |

