diff options
Diffstat (limited to 'lib/Bytecode')
-rw-r--r-- | lib/Bytecode/Reader/Analyzer.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/Bytecode/Reader/Analyzer.cpp b/lib/Bytecode/Reader/Analyzer.cpp index 08429443f5..8ed3301478 100644 --- a/lib/Bytecode/Reader/Analyzer.cpp +++ b/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++; |