1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

remove extra breaks; NFC

llvm-svn: 221374
This commit is contained in:
Sanjay Patel 2014-11-05 18:00:07 +00:00
parent c64628bb5c
commit 13b8368b56

View File

@ -1005,7 +1005,6 @@ void computeKnownBits(Value *V, APInt &KnownZero, APInt &KnownOne,
KnownZero <<= ShiftAmt;
KnownOne <<= ShiftAmt;
KnownZero |= APInt::getLowBitsSet(BitWidth, ShiftAmt); // low bits known 0
break;
}
break;
case Instruction::LShr:
@ -1020,7 +1019,6 @@ void computeKnownBits(Value *V, APInt &KnownZero, APInt &KnownOne,
KnownOne = APIntOps::lshr(KnownOne, ShiftAmt);
// high bits known zero.
KnownZero |= APInt::getHighBitsSet(BitWidth, ShiftAmt);
break;
}
break;
case Instruction::AShr:
@ -1039,7 +1037,6 @@ void computeKnownBits(Value *V, APInt &KnownZero, APInt &KnownOne,
KnownZero |= HighBits;
else if (KnownOne[BitWidth-ShiftAmt-1]) // New bits are known one.
KnownOne |= HighBits;
break;
}
break;
case Instruction::Sub: {