1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

Safeguard DBG_VALUE handling. Unbreaks the ASAN buildbot.

llvm-svn: 186014
This commit is contained in:
Adrian Prantl 2013-07-10 16:56:47 +00:00
parent d1f0bf4b5f
commit c86bbc1f75

View File

@ -1152,7 +1152,8 @@ void InlineSpiller::spillAroundUses(unsigned Reg) {
// Debug values are not allowed to affect codegen.
if (MI->isDebugValue()) {
// Modify DBG_VALUE now that the value is in a spill slot.
uint64_t Offset = MI->getOperand(1).getImm();
bool IsIndirect = MI->getOperand(1).isImm();
uint64_t Offset = IsIndirect ? MI->getOperand(1).getImm() : 0;
const MDNode *MDPtr = MI->getOperand(2).getMetadata();
DebugLoc DL = MI->getDebugLoc();
DEBUG(dbgs() << "Modifying debug info due to spill:" << "\t" << *MI);