From: Devang Patel Date: Thu, 26 May 2011 22:43:14 +0000 (+0000) Subject: Do not move DBG_VALUE in middle of PHI nodes. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=9dd19667fb441f715f920156905b5217382d250c;p=oota-llvm.git Do not move DBG_VALUE in middle of PHI nodes. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@132161 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/Scalar/CodeGenPrepare.cpp b/lib/Transforms/Scalar/CodeGenPrepare.cpp index 7ba92ba2565..da6bf316f31 100644 --- a/lib/Transforms/Scalar/CodeGenPrepare.cpp +++ b/lib/Transforms/Scalar/CodeGenPrepare.cpp @@ -557,7 +557,10 @@ bool CodeGenPrepare::OptimizeCallInst(CallInst *CI) { if (DVI->getParent() != VI->getParent() || DT->dominates(DVI, VI)) { DEBUG(dbgs() << "Moving Debug Value before :\n" << *DVI << ' ' << *VI); DVI->removeFromParent(); - DVI->insertAfter(VI); + if (isa(VI)) + DVI->insertBefore(VI->getParent()->getFirstNonPHI()); + else + DVI->insertAfter(VI); return true; }