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

via llvm-commits llvm-commits at lists.llvm.org
Sat Apr 26 03:16:30 PDT 2025


Author: Abid Qadeer
Date: 2025-04-26T11:16:28+01:00
New Revision: 1b2671f10d7735c43d3e6c344477d4060f69d17d

URL: https://github.com/llvm/llvm-project/commit/1b2671f10d7735c43d3e6c344477d4060f69d17d
DIFF: https://github.com/llvm/llvm-project/commit/1b2671f10d7735c43d3e6c344477d4060f69d17d.diff

LOG: Remove a debugging message left in a unit test. (#137451)

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

Added: 
    

Modified: 
    llvm/unittests/Transforms/Utils/CodeExtractorTest.cpp

Removed: 
    


################################################################################
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();


        


More information about the llvm-commits mailing list