[llvm] 976de71 - Revert "[JITLink] Include LinkGraph name in debugging output."

Lang Hames via llvm-commits llvm-commits at lists.llvm.org
Sat Jul 9 08:30:54 PDT 2022


Author: Lang Hames
Date: 2022-07-09T08:30:42-07:00
New Revision: 976de7130b338aa0d0e63255826a79347635c107

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

LOG: Revert "[JITLink] Include LinkGraph name in debugging output."

Revert 51c705fbe5d8cc85868fc0f35e9b86d7ec301ee5 while I investigate some
builder failures.

Added: 
    

Modified: 
    llvm/lib/ExecutionEngine/JITLink/EHFrameSupport.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/lib/ExecutionEngine/JITLink/EHFrameSupport.cpp b/llvm/lib/ExecutionEngine/JITLink/EHFrameSupport.cpp
index 389fd14c0f29..b1492cd74508 100644
--- a/llvm/lib/ExecutionEngine/JITLink/EHFrameSupport.cpp
+++ b/llvm/lib/ExecutionEngine/JITLink/EHFrameSupport.cpp
@@ -33,7 +33,7 @@ Error EHFrameEdgeFixer::operator()(LinkGraph &G) {
   if (!EHFrame) {
     LLVM_DEBUG({
       dbgs() << "EHFrameEdgeFixer: No " << EHFrameSectionName
-             << " section in \"" << G.getName() << "\". Nothing to do.\n";
+             << " section. Nothing to do\n";
     });
     return Error::success();
   }
@@ -44,8 +44,7 @@ Error EHFrameEdgeFixer::operator()(LinkGraph &G) {
         "EHFrameEdgeFixer only supports 32 and 64 bit targets");
 
   LLVM_DEBUG({
-    dbgs() << "EHFrameEdgeFixer: Processing " << EHFrameSectionName << " in \""
-           << G.getName() << "\"...\n";
+    dbgs() << "EHFrameEdgeFixer: Processing " << EHFrameSectionName << "...\n";
   });
 
   ParseContext PC(G);


        


More information about the llvm-commits mailing list