OSDN Git Service

Do not move DBG_VALUE in middle of PHI nodes.
authorDevang Patel <dpatel@apple.com>
Thu, 26 May 2011 22:43:14 +0000 (22:43 +0000)
committerDevang Patel <dpatel@apple.com>
Thu, 26 May 2011 22:43:14 +0000 (22:43 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@132161 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Scalar/CodeGenPrepare.cpp

index 7ba92ba..da6bf31 100644 (file)
@@ -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<PHINode>(VI))
+          DVI->insertBefore(VI->getParent()->getFirstNonPHI());
+        else
+          DVI->insertAfter(VI);
         return true;
       }