[llvm] [OFFLOAD] Stricter enforcement of user offload disable (PR #133470)
via llvm-commits
llvm-commits at lists.llvm.org
Fri Mar 28 12:01:29 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) {
----------------
adurang wrote:
Well, I was just mimicking what was there but certainly there's no need for it given that is gonna be called just once. But I still would like it to have it wrapped in the same class. Is it better now?
https://github.com/llvm/llvm-project/pull/133470
More information about the llvm-commits
mailing list