[llvm] 41b572b - [ORC][examples] Simplify example -- LLJIT already has a mangleAndIntern method.
Lang Hames via llvm-commits
llvm-commits at lists.llvm.org
Sat Mar 22 17:26:35 PDT 2025
Author: Lang Hames
Date: 2025-03-23T11:25:01+11:00
New Revision: 41b572b99cd5f222330effa323af9c4da8d73e10
URL: https://github.com/llvm/llvm-project/commit/41b572b99cd5f222330effa323af9c4da8d73e10
DIFF: https://github.com/llvm/llvm-project/commit/41b572b99cd5f222330effa323af9c4da8d73e10.diff
LOG: [ORC][examples] Simplify example -- LLJIT already has a mangleAndIntern method.
We don't need a separate MangleAndInterner here any more.
Added:
Modified:
llvm/examples/OrcV2Examples/LLJITWithLazyReexports/LLJITWithLazyReexports.cpp
Removed:
################################################################################
diff --git a/llvm/examples/OrcV2Examples/LLJITWithLazyReexports/LLJITWithLazyReexports.cpp b/llvm/examples/OrcV2Examples/LLJITWithLazyReexports/LLJITWithLazyReexports.cpp
index dc1edb16a560c..f68f35c0ee295 100644
--- a/llvm/examples/OrcV2Examples/LLJITWithLazyReexports/LLJITWithLazyReexports.cpp
+++ b/llvm/examples/OrcV2Examples/LLJITWithLazyReexports/LLJITWithLazyReexports.cpp
@@ -130,13 +130,12 @@ int main(int argc, char *argv[]) {
ExitOnErr(J->addIRModule(ExitOnErr(parseExampleModule(MainMod, "main-mod"))));
// (5) Add lazy reexports.
- MangleAndInterner Mangle(J->getExecutionSession(), J->getDataLayout());
SymbolAliasMap ReExports(
- {{Mangle("foo"),
- {Mangle("foo_body"),
+ {{J->mangleAndIntern("foo"),
+ {J->mangleAndIntern("foo_body"),
JITSymbolFlags::Exported | JITSymbolFlags::Callable}},
- {Mangle("bar"),
- {Mangle("bar_body"),
+ {J->mangleAndIntern("bar"),
+ {J->mangleAndIntern("bar_body"),
JITSymbolFlags::Exported | JITSymbolFlags::Callable}}});
ExitOnErr(J->getMainJITDylib().define(
lazyReexports(*LCTM, *ISM, J->getMainJITDylib(), std::move(ReExports))));
More information about the llvm-commits
mailing list