[llvm] [Orc] Add NotifyCreated callback for LLJITBuilder (PR #84175)
Stefan Gränitz via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 7 15:50:00 PST 2024
================
@@ -474,6 +487,11 @@ class LLJITBuilderSetters {
std::unique_ptr<JITType> J(new JITType(impl(), Err));
if (Err)
return std::move(Err);
+
+ if (impl().NotifyCreated)
+ if (Error Err = impl().NotifyCreated(*J))
+ return Err;
----------------
weliveindetail wrote:
I got a lot of buildbot emails, but they also came all day for all kinds of unrelated reasons... Anyway, sorry for the mess.
https://github.com/llvm/llvm-project/pull/84175
More information about the llvm-commits
mailing list