[llvm] c979e79 - [LLVM] Remove the module dump introduced mistakenly

Shilei Tian via llvm-commits llvm-commits at lists.llvm.org
Sun Jul 23 15:56:18 PDT 2023


Author: Shilei Tian
Date: 2023-07-23T18:55:41-04:00
New Revision: c979e79813f3ca22285dad0077cdda8816a50ccc

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

LOG: [LLVM] Remove the module dump introduced mistakenly

Added: 
    

Modified: 
    llvm/unittests/Frontend/OpenMPIRBuilderTest.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/unittests/Frontend/OpenMPIRBuilderTest.cpp b/llvm/unittests/Frontend/OpenMPIRBuilderTest.cpp
index aff179969b9c88..171aff83172a8d 100644
--- a/llvm/unittests/Frontend/OpenMPIRBuilderTest.cpp
+++ b/llvm/unittests/Frontend/OpenMPIRBuilderTest.cpp
@@ -5192,8 +5192,6 @@ TEST_F(OpenMPIRBuilderTest, TargetRegionDevice) {
   auto *Deinit = TargetStore->getNextNode();
   EXPECT_NE(Deinit, nullptr);
 
-  M->dump();
-
   auto *DeinitCall = dyn_cast<CallInst>(Deinit);
   EXPECT_NE(DeinitCall, nullptr);
   EXPECT_EQ(DeinitCall->getCalledFunction()->getName(), "__kmpc_target_deinit");


        


More information about the llvm-commits mailing list