bug 122:
authorReid Spencer <rspencer@reidspencer.com>
Sun, 18 Jul 2004 00:10:36 +0000 (00:10 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Sun, 18 Jul 2004 00:10:36 +0000 (00:10 +0000)
- Update for BytecodeHandler interface change resuing from CPRs going away

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14938 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Bytecode/Reader/Analyzer.cpp

index 08429443f5037c9c06035bd533a2870aa3674ad7..8ed33014784791e941f6e066f035d898f1a82409 100644 (file)
@@ -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++;