mirror of
https://github.com/RPCS3/llvm.git
synced 2025-04-02 21:31:41 +00:00
Phi nodes always use an even number of operands, so don't ever allocate
an odd number. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@129270 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
ee69926b10
commit
4e9b0e3587
@ -137,7 +137,8 @@ Value *PHINode::removeIncomingValue(unsigned Idx, bool DeletePHIIfEmpty) {
|
||||
///
|
||||
void PHINode::growOperands() {
|
||||
unsigned e = getNumOperands();
|
||||
unsigned NumOps = e*3/2;
|
||||
// Multiply by 1.5 and round down so the result is still even.
|
||||
unsigned NumOps = e + e / 4 * 2;
|
||||
if (NumOps < 4) NumOps = 4; // 4 op PHI nodes are VERY common.
|
||||
|
||||
ReservedSpace = NumOps;
|
||||
|
Loading…
x
Reference in New Issue
Block a user