Revert "[JITLink] Include LinkGraph name in debugging output."
authorLang Hames <lhames@gmail.com>
Sat, 9 Jul 2022 15:30:04 +0000 (08:30 -0700)
committerLang Hames <lhames@gmail.com>
Sat, 9 Jul 2022 15:30:42 +0000 (08:30 -0700)
Revert 51c705fbe5d8cc85868fc0f35e9b86d7ec301ee5 while I investigate some
builder failures.

llvm/lib/ExecutionEngine/JITLink/EHFrameSupport.cpp

index 389fd14..b1492cd 100644 (file)
@@ -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);