mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 20:51:52 +01:00
Fix PR#50
llvm-svn: 9227
This commit is contained in:
parent
29825508f0
commit
e4a69325ff
@ -269,12 +269,12 @@ void PromoteMem2Reg::run() {
|
||||
|
||||
// At this point, the blocks left in the preds list must have dummy
|
||||
// entries inserted into every PHI nodes for the block.
|
||||
for (unsigned i = 0, e = PNs.size(); i != e; ++i) {
|
||||
PHINode *PN = PNs[i];
|
||||
Value *NullVal = Constant::getNullValue(PN->getType());
|
||||
for (unsigned pred = 0, e = Preds.size(); pred != e; ++pred)
|
||||
PN->addIncoming(NullVal, Preds[pred]);
|
||||
}
|
||||
for (unsigned i = 0, e = PNs.size(); i != e; ++i)
|
||||
if (PHINode *PN = PNs[i]) {
|
||||
Value *NullVal = Constant::getNullValue(PN->getType());
|
||||
for (unsigned pred = 0, e = Preds.size(); pred != e; ++pred)
|
||||
PN->addIncoming(NullVal, Preds[pred]);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user