[llvm] d27e4bc - [ORC] Add a FIXME.
Lang Hames via llvm-commits
llvm-commits at lists.llvm.org
Thu May 19 10:51:31 PDT 2022
Author: Lang Hames
Date: 2022-05-19T10:51:20-07:00
New Revision: d27e4bcebdb275a169b859f2df7890f0813ef2f8
URL: https://github.com/llvm/llvm-project/commit/d27e4bcebdb275a169b859f2df7890f0813ef2f8
DIFF: https://github.com/llvm/llvm-project/commit/d27e4bcebdb275a169b859f2df7890f0813ef2f8.diff
LOG: [ORC] Add a FIXME.
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 7467de3c1593..e13028196c84 100644
--- a/llvm/lib/ExecutionEngine/Orc/Core.cpp
+++ b/llvm/lib/ExecutionEngine/Orc/Core.cpp
@@ -485,6 +485,9 @@ Expected<SymbolAliasMap> buildSimpleReexportsAliasMap(JITDylib &SourceJD,
class InProgressLookupState {
public:
+ // FIXME: Reduce the number of SymbolStringPtrs here. See
+ // https://github.com/llvm/llvm-project/issues/55576.
+
InProgressLookupState(LookupKind K, JITDylibSearchOrder SearchOrder,
SymbolLookupSet LookupSet, SymbolState RequiredState)
: K(K), SearchOrder(std::move(SearchOrder)),
More information about the llvm-commits
mailing list