forked from OSchip/llvm-project
Actually, leave the check in. This prevents us from counting dead arguments
as IPCP opportunities. llvm-svn: 17680
This commit is contained in:
parent
5fa696f8e4
commit
9621dfab3f
|
@ -113,7 +113,7 @@ bool IPCP::processFunction(Function &F) {
|
||||||
bool MadeChange = false;
|
bool MadeChange = false;
|
||||||
for (unsigned i = 0, e = ArgumentConstants.size(); i != e; ++i, ++AI)
|
for (unsigned i = 0, e = ArgumentConstants.size(); i != e; ++i, ++AI)
|
||||||
// Do we have a constant argument!?
|
// Do we have a constant argument!?
|
||||||
if (!ArgumentConstants[i].second) {
|
if (!ArgumentConstants[i].second && !AI->use_empty()) {
|
||||||
Value *V = ArgumentConstants[i].first;
|
Value *V = ArgumentConstants[i].first;
|
||||||
if (V == 0) V = UndefValue::get(AI->getType());
|
if (V == 0) V = UndefValue::get(AI->getType());
|
||||||
AI->replaceAllUsesWith(V);
|
AI->replaceAllUsesWith(V);
|
||||||
|
|
Loading…
Reference in New Issue