OSDN Git Service

Preserve DbgLoc when DeadArgumentElimination rewrites a 'ret'.
authorPaul Robinson <paul.robinson@sony.com>
Thu, 28 May 2020 20:19:52 +0000 (13:19 -0700)
committerPaul Robinson <paul.robinson@sony.com>
Fri, 29 May 2020 17:00:33 +0000 (10:00 -0700)
Fixes PR46002.

llvm/lib/Transforms/IPO/DeadArgumentElimination.cpp
llvm/test/Transforms/DeadArgElim/dbginfo-preserve-dbgloc.ll

index 5dc1a6f..00fcba4 100644 (file)
@@ -1056,7 +1056,8 @@ bool DeadArgumentEliminationPass::RemoveDeadStuffFromFunction(Function *F) {
         }
         // Replace the return instruction with one returning the new return
         // value (possibly 0 if we became void).
-        ReturnInst::Create(F->getContext(), RetVal, RI);
+        auto *NewRet = ReturnInst::Create(F->getContext(), RetVal, RI);
+        NewRet->setDebugLoc(RI->getDebugLoc());
         BB.getInstList().erase(RI);
       }
 
index de5082d..ab7645e 100644 (file)
@@ -63,6 +63,7 @@ if.end3:                                          ; preds = %if.end
 
 cleanup:                                          ; preds = %if.end3, %if.then2, %if.then
   %retval.0 = phi i1 [ false, %if.then2 ], [ true, %if.end3 ], [ false, %if.then ]
+; CHECK: ret void, !dbg
   ret i1 %retval.0, !dbg !56
 }