mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
Add some debugging output into fast isel as well.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@152844 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
8f2a88d734
commit
bb54d21495
@ -577,12 +577,16 @@ bool FastISel::SelectCall(const User *I) {
|
||||
case Intrinsic::dbg_declare: {
|
||||
const DbgDeclareInst *DI = cast<DbgDeclareInst>(Call);
|
||||
if (!DIVariable(DI->getVariable()).Verify() ||
|
||||
!FuncInfo.MF->getMMI().hasDebugInfo())
|
||||
!FuncInfo.MF->getMMI().hasDebugInfo()) {
|
||||
DEBUG(dbgs() << "Dropping debug info for " << *DI << "\n");
|
||||
return true;
|
||||
}
|
||||
|
||||
const Value *Address = DI->getAddress();
|
||||
if (!Address || isa<UndefValue>(Address) || isa<AllocaInst>(Address))
|
||||
if (!Address || isa<UndefValue>(Address) || isa<AllocaInst>(Address)) {
|
||||
DEBUG(dbgs() << "Dropping debug info for " << *DI << "\n");
|
||||
return true;
|
||||
}
|
||||
|
||||
unsigned Reg = 0;
|
||||
unsigned Offset = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user