1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 11:42:57 +01:00
- Update for BytecodeHandler interface change resuing from CPRs going away

llvm-svn: 14938
This commit is contained in:
Reid Spencer 2004-07-18 00:10:36 +00:00
parent 6ed43e1320
commit b320f8eb03

View 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++;