diff options
author | Evan Cheng <evan.cheng@apple.com> | 2010-04-29 01:23:55 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2010-04-29 01:23:55 +0000 |
commit | ee1d91a8301f91318e1aeed55c35ba5f6ca0b913 (patch) | |
tree | d96cc6ff881aaf844f756521bd538b59b743d14e /lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp | |
parent | 8601a3d4decff0a380e059b037dabf71075497d3 (diff) |
Avoid emitting a dbg_value machineinstr that's not going to be inserted into entry block.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@102581 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp')
-rw-r--r-- | lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp b/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp index 254a6543ff..cb933d7cdd 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp +++ b/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp @@ -3709,6 +3709,8 @@ SelectionDAGBuilder::EmitFuncArgumentDbgValue(const DbgValueInst &DI, if (!Reg) Reg = FuncInfo.ValueMap[V]; + if (!Reg) + return; const TargetInstrInfo *TII = DAG.getTarget().getInstrInfo(); MachineInstrBuilder MIB = BuildMI(MF, getCurDebugLoc(), |