[llvm] 7811c20 - [ORC] Add a FIXME. NFC.
Lang Hames via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 6 19:28:30 PST 2025
Author: Lang Hames
Date: 2025-02-07T14:28:01+11:00
New Revision: 7811c20bcd9d5b117a9543d74c71448fe9970fe6
URL: https://github.com/llvm/llvm-project/commit/7811c20bcd9d5b117a9543d74c71448fe9970fe6
DIFF: https://github.com/llvm/llvm-project/commit/7811c20bcd9d5b117a9543d74c71448fe9970fe6.diff
LOG: [ORC] Add a FIXME. NFC.
Added:
Modified:
llvm/lib/ExecutionEngine/Orc/ExecutorProcessControl.cpp
Removed:
################################################################################
diff --git a/llvm/lib/ExecutionEngine/Orc/ExecutorProcessControl.cpp b/llvm/lib/ExecutionEngine/Orc/ExecutorProcessControl.cpp
index b51fa24be76d1a..a9dbcd166117b0 100644
--- a/llvm/lib/ExecutionEngine/Orc/ExecutorProcessControl.cpp
+++ b/llvm/lib/ExecutionEngine/Orc/ExecutorProcessControl.cpp
@@ -55,6 +55,9 @@ SelfExecutorProcessControl::SelfExecutorProcessControl(
ExecutorAddr::fromPtr(&llvm_orc_deregisterEHFrameSectionWrapper);
#ifdef __APPLE__
+ // FIXME: Don't add an UnwindInfoManager by default -- it's redundant when
+ // the ORC runtime is loaded. We'll need a way to document this and
+ // allow clients to choose.
this->UnwindInfoMgr = UnwindInfoManager::TryCreate();
if (this->UnwindInfoMgr)
this->UnwindInfoMgr->addBootstrapSymbols(this->BootstrapSymbols);
More information about the llvm-commits
mailing list