From: Devang Patel Date: Wed, 1 Jul 2009 18:51:07 +0000 (+0000) Subject: llvm.dbg.declare is always used for local variable's debug info. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=30d7b650aa443b78cfa1e918bb0d5eaf288b0a2f;p=oota-llvm.git llvm.dbg.declare is always used for local variable's debug info. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74625 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/SelectionDAG/FastISel.cpp b/lib/CodeGen/SelectionDAG/FastISel.cpp index 24fccf00eec..45c7ace78bd 100644 --- a/lib/CodeGen/SelectionDAG/FastISel.cpp +++ b/lib/CodeGen/SelectionDAG/FastISel.cpp @@ -442,10 +442,7 @@ bool FastISel::SelectCall(User *I) { MachineInstr *DeclareMI = BuildMI(MBB, DL, II).addFrameIndex(FI).addGlobalAddress(GV); DIVariable DV(cast(GV)); - if (!DV.isNull()) { - // This is a local variable - DW->RecordVariableScope(DV, DeclareMI); - } + DW->RecordVariableScope(DV, DeclareMI); } return true; }