[llvm] [OFFLOAD] Stricter enforcement of user offload disable (PR #133470)
Joseph Huber via llvm-commits
llvm-commits at lists.llvm.org
Fri Mar 28 12:22:54 PDT 2025
================
@@ -31,6 +32,12 @@ void initRuntime() {
if (PM == nullptr)
PM = new PluginManager();
+ if (OffloadPolicy::isOffloadDisabled()) {
----------------
jhuber6 wrote:
Well, there's possibly entrypoint into `libomptarget`. I'm wondering what this does in that case. I suppose this keeps it from being `null` and potentially crashing, but it might be invalid since it's not initialized.
https://github.com/llvm/llvm-project/pull/133470
More information about the llvm-commits
mailing list