[llvm] b396a6d - [ORC] Fix a stale comment: lookupInitSymbolsAsync does not build a result map.

Lang Hames via llvm-commits llvm-commits at lists.llvm.org
Mon Jan 17 18:32:28 PST 2022


Author: Lang Hames
Date: 2022-01-18T11:55:23+11:00
New Revision: b396a6dc0cd9de51b408d0bc94c68ef4f0b16245

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

LOG: [ORC] Fix a stale comment: lookupInitSymbolsAsync does not build a result map.

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 b5f5636800df2..b0931db87399e 100644
--- a/llvm/include/llvm/ExecutionEngine/Orc/Core.h
+++ b/llvm/include/llvm/ExecutionEngine/Orc/Core.h
@@ -1327,8 +1327,7 @@ class Platform {
                     const DenseMap<JITDylib *, SymbolLookupSet> &InitSyms);
 
   /// Performs an async lookup for the the given symbols in each of the given
-  /// JITDylibs, calling the given handler with the compound result map once
-  /// all lookups have completed.
+  /// JITDylibs, calling the given handler once all lookups have completed.
   static void
   lookupInitSymbolsAsync(unique_function<void(Error)> OnComplete,
                          ExecutionSession &ES,


        


More information about the llvm-commits mailing list