[PATCH] D107569: [ORC] Emit i386 indirections for 32-bit processes on x86_64 hosts
Michał Górny via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Aug 5 07:49:44 PDT 2021
mgorny added inline comments.
================
Comment at: llvm/lib/ExecutionEngine/Orc/IndirectionUtils.cpp:151
case Triple::x86_64: {
+#if defined(LLVM_BUILD_32_BITS)
+ typedef orc::LocalJITCompileCallbackManager<orc::OrcI386> CCMgrT;
----------------
As I said on the bug, we normally don't use `LLVM_BUILD_32_BITS`. I think this is somewhat ugly but how about just using `__i386__`?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D107569/new/
https://reviews.llvm.org/D107569
More information about the llvm-commits
mailing list