diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-07-18 00:10:36 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-07-18 00:10:36 +0000 |
commit | edbb40b23c9d509b1e5afe88af0d1a847d6ad7a8 (patch) | |
tree | 8d6f8027543b8c8aaf10ac0e10b2665a9327441f /llvm/lib/Bytecode | |
parent | ce6adaff1cc72e9e5d54982642acb731364a46f8 (diff) | |
download | bcm5719-llvm-edbb40b23c9d509b1e5afe88af0d1a847d6ad7a8.tar.gz bcm5719-llvm-edbb40b23c9d509b1e5afe88af0d1a847d6ad7a8.zip |
bug 122:
- Update for BytecodeHandler interface change resuing from CPRs going away
llvm-svn: 14938
Diffstat (limited to 'llvm/lib/Bytecode')
-rw-r--r-- | llvm/lib/Bytecode/Reader/Analyzer.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/llvm/lib/Bytecode/Reader/Analyzer.cpp b/llvm/lib/Bytecode/Reader/Analyzer.cpp index 08429443f50..8ed33014784 100644 --- a/llvm/lib/Bytecode/Reader/Analyzer.cpp +++ b/llvm/lib/Bytecode/Reader/Analyzer.cpp @@ -392,12 +392,10 @@ public: } virtual void handleConstantPointer( const PointerType* PT, - unsigned Slot, GlobalValue* GV, Constant* PtrVal) { + unsigned Slot, GlobalValue* GV ) { dump << " PNTR: " << PT->getDescription() << " Slot=" << Slot << " GlobalValue="; GV->print(dump); - dump << "\n Value="; - PtrVal->print(dump); dump << "\n"; bca.numConstants++; bca.numValues++; |