[llvm] 92430b4 - [ORC] Fix typo in declaration
    Lang Hames via llvm-commits 
    llvm-commits at lists.llvm.org
       
    Fri Jul 16 23:10:42 PDT 2021
    
    
  
Author: Lang Hames
Date: 2021-07-17T16:10:15+10:00
New Revision: 92430b4937911f935a45f6bd43d70cd5adb0fd51
URL: https://github.com/llvm/llvm-project/commit/92430b4937911f935a45f6bd43d70cd5adb0fd51
DIFF: https://github.com/llvm/llvm-project/commit/92430b4937911f935a45f6bd43d70cd5adb0fd51.diff
LOG: [ORC] Fix typo in declaration
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 42bcffd36b25..9219e2880159 100644
--- a/llvm/include/llvm/ExecutionEngine/Orc/Core.h
+++ b/llvm/include/llvm/ExecutionEngine/Orc/Core.h
@@ -792,7 +792,7 @@ reexports(JITDylib &SourceJD, SymbolAliasMap Aliases,
 /// Build a SymbolAliasMap for the common case where you want to re-export
 /// symbols from another JITDylib with the same linkage/flags.
 Expected<SymbolAliasMap>
-buildSimpleReexportsAAliasMap(JITDylib &SourceJD, const SymbolNameSet &Symbols);
+buildSimpleReexportsAliasMap(JITDylib &SourceJD, const SymbolNameSet &Symbols);
 
 /// Represents the state that a symbol has reached during materialization.
 enum class SymbolState : uint8_t {
        
    
    
More information about the llvm-commits
mailing list