[llvm] [Attributor] Do not optimize away externally_initialized loads. (PR #128170)
Pierre van Houtryve via llvm-commits
llvm-commits at lists.llvm.org
Mon Feb 24 02:52:53 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())
----------------
Pierre-vh wrote:
You're right, I'm not sure when we should return undef in this case.
Maybe only for external GVs that don't have an initializer, and don't have externally_initialized? Not sure if that even comes up either.
@jdoerfert what should this function do?
https://github.com/llvm/llvm-project/pull/128170
More information about the llvm-commits
mailing list