diff options
author | Adrian Prantl <aprantl@apple.com> | 2014-04-25 18:18:09 +0000 |
---|---|---|
committer | Adrian Prantl <aprantl@apple.com> | 2014-04-25 18:18:09 +0000 |
commit | d2d9b76e484cccc8ab60bf11a93b2be7c7429019 (patch) | |
tree | 2d5a2ed534bb7be63eca836bd186549fc18224d9 /llvm/lib/CodeGen/CodeGenPrepare.cpp | |
parent | a16a629ef6a3c18d1be1c2008f11dc5b446ad670 (diff) | |
download | llvm-d2d9b76e484cccc8ab60bf11a93b2be7c7429019.zip llvm-d2d9b76e484cccc8ab60bf11a93b2be7c7429019.tar.gz llvm-d2d9b76e484cccc8ab60bf11a93b2be7c7429019.tar.bz2 |
Revert "This reapplies r207130 with an additional testcase+and a missing check for"
This reverts commit 207235 to investigate msan buildbot breakage.
llvm-svn: 207250
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 875615c4..85734f7 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; } |