[llvm] [OFFLOAD] Stricter enforcement of user offload disable (PR #133470)
Joseph Huber via llvm-commits
llvm-commits at lists.llvm.org
Fri Mar 28 10:39:22 PDT 2025
================
@@ -46,10 +57,16 @@ class OffloadPolicy {
Kind = DISABLED;
}
return;
- };
+ }
+ Kind = OP.Kind;
}
public:
+ static const OffloadPolicy &get() {
+ static OffloadPolicy OP;
+ return OP;
+ }
+
static const OffloadPolicy &get(PluginManager &PM) {
----------------
jhuber6 wrote:
Now we have two static variables for this? Probably better to just check `__kmpc_get_target_offload` manually and not even bother making the pass manager.
https://github.com/llvm/llvm-project/pull/133470
More information about the llvm-commits
mailing list