[llvm] fc3b267 - [ORC] Fix typo in debugging output

Lang Hames via llvm-commits llvm-commits at lists.llvm.org
Tue Aug 24 20:33:15 PDT 2021


Author: Lang Hames
Date: 2021-08-25T13:31:51+10:00
New Revision: fc3b2675e77e5630869aff20575665b030c564be

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

LOG: [ORC] Fix typo in debugging output

Added: 
    

Modified: 
    llvm/lib/ExecutionEngine/Orc/Core.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/lib/ExecutionEngine/Orc/Core.cpp b/llvm/lib/ExecutionEngine/Orc/Core.cpp
index 12a501f7f98c6..167efc8dba7a1 100644
--- a/llvm/lib/ExecutionEngine/Orc/Core.cpp
+++ b/llvm/lib/ExecutionEngine/Orc/Core.cpp
@@ -2594,7 +2594,7 @@ void ExecutionSession::OL_completeLookup(
       }
     }
 
-    LLVM_DEBUG(dbgs() << "Stripping unmatched weakly-refererced symbols\n");
+    LLVM_DEBUG(dbgs() << "Stripping unmatched weakly-referenced symbols\n");
     IPLS->LookupSet.forEachWithRemoval(
         [&](const SymbolStringPtr &Name, SymbolLookupFlags SymLookupFlags) {
           if (SymLookupFlags == SymbolLookupFlags::WeaklyReferencedSymbol) {


        


More information about the llvm-commits mailing list