Add another debugging statement here.

llvm-svn: 153072
This commit is contained in:
Eric Christopher 2012-03-20 01:07:53 +00:00
parent 1a06cc9ae6
commit e5e54c87fa
1 changed files with 4 additions and 0 deletions

View File

@ -597,6 +597,10 @@ bool FastISel::SelectCall(const User *I) {
TII.get(TargetOpcode::DBG_VALUE))
.addReg(Reg, RegState::Debug).addImm(Offset)
.addMetadata(DI->getVariable());
else
// We can't yet handle anything else here because it would require
// generating code, thus altering codegen because of debug info.
DEBUG(dbgs() << "Dropping debug info for " << DI);
return true;
}
case Intrinsic::dbg_value: {