diff options
author | Eric Christopher <echristo@apple.com> | 2011-09-29 00:50:59 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2011-09-29 00:50:59 +0000 |
commit | 12eb3ad5d6b7dea67ef5aa3b0618d95acf3f8acd (patch) | |
tree | 8ba88db50fcf520f72615d4c831e20af01783b1d /lib/CodeGen/SelectionDAG | |
parent | 3627a462938c92c00053a24828b35da5195d0d68 (diff) | |
download | external_llvm-12eb3ad5d6b7dea67ef5aa3b0618d95acf3f8acd.zip external_llvm-12eb3ad5d6b7dea67ef5aa3b0618d95acf3f8acd.tar.gz external_llvm-12eb3ad5d6b7dea67ef5aa3b0618d95acf3f8acd.tar.bz2 |
Use the local we already set up.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@140745 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG')
-rw-r--r-- | lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp b/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp index 2bfb529..2f0ba85 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp +++ b/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp @@ -4535,7 +4535,7 @@ SelectionDAGBuilder::visitIntrinsicCall(const CallInst &I, unsigned Intrinsic) { const DbgDeclareInst &DI = cast<DbgDeclareInst>(I); MDNode *Variable = DI.getVariable(); const Value *Address = DI.getAddress(); - if (!Address || !DIVariable(DI.getVariable()).Verify()) + if (!Address || !DIVariable(Variable).Verify()) return 0; // Build an entry in DbgOrdering. Debug info input nodes get an SDNodeOrder |