[llvm] [Attributor] Do not optimize away externally_initialized loads. (PR #128170)

Nikita Popov via llvm-commits llvm-commits at lists.llvm.org
Fri Feb 28 06:58:57 PST 2025


================
@@ -259,11 +259,16 @@ AA::getInitialValueForObj(Attributor &A, const AbstractAttribute &QueryingAA,
     if (!Initializer)
       return nullptr;
   } else {
-    if (!GV->hasLocalLinkage() &&
-        (GV->isInterposable() || !(GV->isConstant() && GV->hasInitializer())))
-      return nullptr;
-    if (!GV->hasInitializer())
-      return UndefValue::get(&Ty);
+    if (GV->hasLocalLinkage()) {
+      // Uninitialized global with local linkage.
+      if (!GV->hasInitializer())
----------------
nikic wrote:

On a second look, we do have a verifier check here: https://github.com/llvm/llvm-project/blob/e6a0ee3d1d12c9c02c1a361109e282d18dd2430c/llvm/lib/IR/Verifier.cpp#L735-L736

So I believe you should just drop the !hasInitializer check here. (Or make it an assert.)

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


More information about the llvm-commits mailing list