Observed this while reading code, so I do not have a test case handy here.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@130167
91177308-0d34-0410-b5e6-
96231b3b80d8
} else {
MachineLocation Location = Asm->getDebugValueLocation(DVInsn);
if (Location.getReg()) {
- TheCU->addAddress(VariableDie, dwarf::DW_AT_location, Location);
+ if (DV->getVariable().hasComplexAddress())
+ TheCU->addComplexAddress(DV, VariableDie, dwarf::DW_AT_location,
+ Location);
+ else
+ TheCU->addAddress(VariableDie, dwarf::DW_AT_location, Location);
updated = true;
}
}