mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-26 05:25:47 +00:00
bug 122:
- 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
This commit is contained in:
@@ -392,12 +392,10 @@ public:
|
|||||||
}
|
}
|
||||||
|
|
||||||
virtual void handleConstantPointer( const PointerType* PT,
|
virtual void handleConstantPointer( const PointerType* PT,
|
||||||
unsigned Slot, GlobalValue* GV, Constant* PtrVal) {
|
unsigned Slot, GlobalValue* GV ) {
|
||||||
dump << " PNTR: " << PT->getDescription()
|
dump << " PNTR: " << PT->getDescription()
|
||||||
<< " Slot=" << Slot << " GlobalValue=";
|
<< " Slot=" << Slot << " GlobalValue=";
|
||||||
GV->print(dump);
|
GV->print(dump);
|
||||||
dump << "\n Value=";
|
|
||||||
PtrVal->print(dump);
|
|
||||||
dump << "\n";
|
dump << "\n";
|
||||||
bca.numConstants++;
|
bca.numConstants++;
|
||||||
bca.numValues++;
|
bca.numValues++;
|
||||||
|
Reference in New Issue
Block a user