[llvm] 21939c4 - [ORC] Fix type name in comments. NFC.

Lang Hames via llvm-commits llvm-commits at lists.llvm.org
Sat Feb 22 23:16:17 PST 2025


Author: Lang Hames
Date: 2025-02-23T18:16:10+11:00
New Revision: 21939c4c2eb51a0561e8c22c77073e762b722133

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

LOG: [ORC] Fix type name in comments. NFC.

Added: 
    

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

Removed: 
    


################################################################################
diff  --git a/llvm/include/llvm/ExecutionEngine/Orc/EPCDynamicLibrarySearchGenerator.h b/llvm/include/llvm/ExecutionEngine/Orc/EPCDynamicLibrarySearchGenerator.h
index e56afe4fe656b..6571a70da9ba7 100644
--- a/llvm/include/llvm/ExecutionEngine/Orc/EPCDynamicLibrarySearchGenerator.h
+++ b/llvm/include/llvm/ExecutionEngine/Orc/EPCDynamicLibrarySearchGenerator.h
@@ -27,8 +27,8 @@ class EPCDynamicLibrarySearchGenerator : public DefinitionGenerator {
   using SymbolPredicate = unique_function<bool(const SymbolStringPtr &)>;
   using AddAbsoluteSymbolsFn = unique_function<Error(JITDylib &, SymbolMap)>;
 
-  /// Create a DynamicLibrarySearchGenerator that searches for symbols in the
-  /// library with the given handle.
+  /// Create an EPCDynamicLibrarySearchGenerator that searches for symbols in
+  /// the library with the given handle.
   ///
   /// If the Allow predicate is given then only symbols matching the predicate
   /// will be searched for. If the predicate is not given then all symbols will
@@ -44,8 +44,9 @@ class EPCDynamicLibrarySearchGenerator : public DefinitionGenerator {
         AddAbsoluteSymbols(std::move(AddAbsoluteSymbols)) {}
 
   /// Permanently loads the library at the given path and, on success, returns
-  /// a DynamicLibrarySearchGenerator that will search it for symbol definitions
-  /// in the library. On failure returns the reason the library failed to load.
+  /// an EPCDynamicLibrarySearchGenerator that will search it for symbol
+  /// definitions in the library. On failure returns the reason the library
+  /// failed to load.
   static Expected<std::unique_ptr<EPCDynamicLibrarySearchGenerator>>
   Load(ExecutionSession &ES, const char *LibraryPath,
        SymbolPredicate Allow = SymbolPredicate(),


        


More information about the llvm-commits mailing list