mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2026-04-25 21:18:19 +00:00
Debug info: Fix PR16736 and rdar://problem/14990587.
A DBG_VALUE is register-indirect iff the first operand is a register _and_ the second operand is an immediate. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@190821 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -298,7 +298,7 @@ void RAFast::spillVirtReg(MachineBasicBlock::iterator MI,
|
||||
for (unsigned li = 0, le = LRIDbgValues.size(); li != le; ++li) {
|
||||
MachineInstr *DBG = LRIDbgValues[li];
|
||||
const MDNode *MDPtr = DBG->getOperand(2).getMetadata();
|
||||
bool IsIndirect = DBG->getOperand(1).isImm(); // Register-indirect value?
|
||||
bool IsIndirect = DBG->isIndirectDebugValue();
|
||||
uint64_t Offset = IsIndirect ? DBG->getOperand(1).getImm() : 0;
|
||||
DebugLoc DL;
|
||||
if (MI == MBB->end()) {
|
||||
@@ -856,7 +856,7 @@ void RAFast::AllocateBasicBlock() {
|
||||
}
|
||||
else {
|
||||
// Modify DBG_VALUE now that the value is in a spill slot.
|
||||
bool IsIndirect = MI->getOperand(1).isImm();
|
||||
bool IsIndirect = MI->isIndirectDebugValue();
|
||||
uint64_t Offset = IsIndirect ? MI->getOperand(1).getImm() : 0;
|
||||
const MDNode *MDPtr =
|
||||
MI->getOperand(MI->getNumOperands()-1).getMetadata();
|
||||
|
||||
Reference in New Issue
Block a user