[llvm] Remove a debugging message left in a unit test. (PR #137451)

via llvm-commits llvm-commits at lists.llvm.org
Sat Apr 26 02:33:36 PDT 2025


llvmbot wrote:


<!--LLVM PR SUMMARY COMMENT-->

@llvm/pr-subscribers-llvm-transforms

Author: Abid Qadeer (abidh)

<details>
<summary>Changes</summary>

This should fix the regression reported in https://github.com/llvm/llvm-project/pull/136016#issuecomment-2831987288

---
Full diff: https://github.com/llvm/llvm-project/pull/137451.diff


1 Files Affected:

- (modified) llvm/unittests/Transforms/Utils/CodeExtractorTest.cpp (-1) 


``````````diff
diff --git a/llvm/unittests/Transforms/Utils/CodeExtractorTest.cpp b/llvm/unittests/Transforms/Utils/CodeExtractorTest.cpp
index 42a00c9beb560..239e84d6024ff 100644
--- a/llvm/unittests/Transforms/Utils/CodeExtractorTest.cpp
+++ b/llvm/unittests/Transforms/Utils/CodeExtractorTest.cpp
@@ -787,7 +787,6 @@ TEST(CodeExtractor, ArgsDebugInfo) {
     CE.findAllocas(CEAC, SinkingCands, HoistingCands, CommonExit);
     CE.findInputsOutputs(Inputs, Outputs, SinkingCands);
     Function *Outlined = CE.extractCodeRegion(CEAC, Inputs, Outputs);
-    Outlined->dump();
     EXPECT_TRUE(Outlined);
     BasicBlock &EB = Outlined->getEntryBlock();
     Instruction *Term = EB.getTerminator();

``````````

</details>


https://github.com/llvm/llvm-project/pull/137451


More information about the llvm-commits mailing list