We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a9b4976 commit 1ba8799Copy full SHA for 1ba8799
llvm/lib/ExecutionEngine/Orc/ExecutorProcessControl.cpp
@@ -55,6 +55,9 @@ SelfExecutorProcessControl::SelfExecutorProcessControl(
55
ExecutorAddr::fromPtr(&llvm_orc_deregisterEHFrameSectionWrapper);
56
57
#ifdef __APPLE__
58
+ // FIXME: Don't add an UnwindInfoManager by default -- it's redundant when
59
+ // the ORC runtime is loaded. We'll need a way to document this and
60
+ // allow clients to choose.
61
this->UnwindInfoMgr = UnwindInfoManager::TryCreate();
62
if (this->UnwindInfoMgr)
63
this->UnwindInfoMgr->addBootstrapSymbols(this->BootstrapSymbols);
0 commit comments