[llvm] [OFFLOAD] Stricter enforcement of user offload disable (PR #133470)

via llvm-commits llvm-commits at lists.llvm.org
Fri Mar 28 12:22:07 PDT 2025


================
@@ -31,6 +32,12 @@ void initRuntime() {
   if (PM == nullptr)
     PM = new PluginManager();
 
+  if (OffloadPolicy::isOffloadDisabled()) {
----------------
adurang wrote:

The Plugin Manager needs to exist as too many entry points assume that is allocated without ever checking... But it will not go through the normal initialization so the impact is minimal.

https://github.com/llvm/llvm-project/pull/133470


More information about the llvm-commits mailing list