[llvm] 14f1437 - [ORC] Remove reference to incomplete type in debugging output.

Lang Hames via llvm-commits llvm-commits at lists.llvm.org
Sun Oct 23 14:29:45 PDT 2022


Author: Lang Hames
Date: 2022-10-23T14:29:12-07:00
New Revision: 14f143771b725d63b16e49f3ab040bfb6946376a

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

LOG: [ORC] Remove reference to incomplete type in debugging output.

Added: 
    

Modified: 
    llvm/include/llvm/ExecutionEngine/Orc/Core.h

Removed: 
    


################################################################################
diff  --git a/llvm/include/llvm/ExecutionEngine/Orc/Core.h b/llvm/include/llvm/ExecutionEngine/Orc/Core.h
index d5e5222d8476..cb3de04b8469 100644
--- a/llvm/include/llvm/ExecutionEngine/Orc/Core.h
+++ b/llvm/include/llvm/ExecutionEngine/Orc/Core.h
@@ -709,8 +709,8 @@ class MaterializationUnit {
     SymbolFlags.erase(Name);
     if (InitSymbol == Name) {
       DEBUG_WITH_TYPE("orc", {
-        dbgs() << "In " << JD.getName() << ", " << getName()
-               << ": discarding init symbol \"" << *Name << "\"\n";
+        dbgs() << "In " << getName() << ": discarding init symbol \""
+               << *Name << "\"\n";
       });
       InitSymbol = nullptr;
     }


        


More information about the llvm-commits mailing list