bug 122:
- Update for BytecodeHandler interface change resuing from CPRs going away
llvm-svn: 14938
diff --git a/llvm/lib/Bytecode/Reader/Analyzer.cpp b/llvm/lib/Bytecode/Reader/Analyzer.cpp
index 0842944..8ed3301 100644
--- a/llvm/lib/Bytecode/Reader/Analyzer.cpp
+++ b/llvm/lib/Bytecode/Reader/Analyzer.cpp
@@ -392,12 +392,10 @@
}
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++;