We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f043677 commit 46853b9Copy full SHA for 46853b9
llvm/lib/Transforms/Scalar/SCCP.cpp
@@ -1061,11 +1061,6 @@ void SCCPSolver::visitStoreInst(StoreInst &SI) {
1061
if (TrackedGlobals.empty() || !isa<GlobalVariable>(SI.getOperand(1)))
1062
return;
1063
1064
- // ResolvedUndefsIn might mark I as overdefined. Bail out, even if we would
1065
- // discover a concrete value later.
1066
- if (isOverdefined(ValueState[&SI]))
1067
- return (void)markOverdefined(&SI);
1068
-
1069
GlobalVariable *GV = cast<GlobalVariable>(SI.getOperand(1));
1070
auto I = TrackedGlobals.find(GV);
1071
if (I == TrackedGlobals.end())
0 commit comments