[llvm-commits] CVS: llvm/lib/Bytecode/Reader/Analyzer.cpp
LLVM
llvm at cs.uiuc.edu
Sat Jul 17 17:10:46 PDT 2004
Changes in directory llvm/lib/Bytecode/Reader:
Analyzer.cpp updated: 1.10 -> 1.11
---
Log message:
bug 122: http://llvm.cs.uiuc.edu/PR122 :
- Update for BytecodeHandler interface change resuing from CPRs going away
---
Diffs of the changes: (+1 -3)
Index: llvm/lib/Bytecode/Reader/Analyzer.cpp
diff -u llvm/lib/Bytecode/Reader/Analyzer.cpp:1.10 llvm/lib/Bytecode/Reader/Analyzer.cpp:1.11
--- llvm/lib/Bytecode/Reader/Analyzer.cpp:1.10 Sat Jul 10 03:04:13 2004
+++ llvm/lib/Bytecode/Reader/Analyzer.cpp Sat Jul 17 19:10:36 2004
@@ -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++;
More information about the llvm-commits
mailing list