diff options
author | Adrian Prantl <aprantl@apple.com> | 2014-04-25 00:42:50 +0000 |
---|---|---|
committer | Adrian Prantl <aprantl@apple.com> | 2014-04-25 00:42:50 +0000 |
commit | 6e5de2ea0672810a2d9578f17825002989fa1b1a (patch) | |
tree | 8780eeec2c7b863e866091a1d355694fdd3f20ff /llvm/lib/CodeGen/CodeGenPrepare.cpp | |
parent | 3512190ab3b8acb3ca035073aefec25f0a23a046 (diff) | |
download | bcm5719-llvm-6e5de2ea0672810a2d9578f17825002989fa1b1a.tar.gz bcm5719-llvm-6e5de2ea0672810a2d9578f17825002989fa1b1a.zip |
Revert "This reapplies r207130 with an additional testcase+and a missing check for"
Typo in testcase.
llvm-svn: 207166
Diffstat (limited to 'llvm/lib/CodeGen/CodeGenPrepare.cpp')
-rw-r--r-- | llvm/lib/CodeGen/CodeGenPrepare.cpp | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/llvm/lib/CodeGen/CodeGenPrepare.cpp b/llvm/lib/CodeGen/CodeGenPrepare.cpp index 875615c4c3e..85734f715c9 100644 --- a/llvm/lib/CodeGen/CodeGenPrepare.cpp +++ b/llvm/lib/CodeGen/CodeGenPrepare.cpp @@ -3470,12 +3470,7 @@ bool CodeGenPrepare::PlaceDbgValues(Function &F) { for (BasicBlock::iterator BI = I->begin(), BE = I->end(); BI != BE;) { Instruction *Insn = BI; ++BI; DbgValueInst *DVI = dyn_cast<DbgValueInst>(Insn); - // Leave dbg.values that refer to an alloca alone. These - // instrinsics describe the address of a variable (= the alloca) - // being taken. They should not be moved next to the alloca - // (and to the beginning of the scope), but rather stay close to - // where said address is used. - if (!DVI || (DVI->getValue() && isa<AllocaInst>(DVI->getValue()))) { + if (!DVI) { PrevNonDbgInst = Insn; continue; } |