[llvm] [Attributor] Do not optimize away externally_initialized loads. (PR #128170)
Matt Arsenault via llvm-commits
llvm-commits at lists.llvm.org
Fri Feb 21 05:04:23 PST 2025
================
@@ -260,7 +260,8 @@ AA::getInitialValueForObj(Attributor &A, const AbstractAttribute &QueryingAA,
return nullptr;
} else {
if (!GV->hasLocalLinkage() &&
- (GV->isInterposable() || !(GV->isConstant() && GV->hasInitializer())))
+ (GV->isInterposable() || GV->isExternallyInitialized() ||
+ !(GV->isConstant() && GV->hasInitializer())))
----------------
arsenm wrote:
demorgan condition. Or just fix this to use hasDefinitiveInitializer
https://github.com/llvm/llvm-project/pull/128170
More information about the llvm-commits
mailing list