1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 19:52:54 +01:00

remove some redundant braces

llvm-svn: 89912
This commit is contained in:
Chris Lattner 2009-11-26 01:50:12 +00:00
parent dd352c2a81
commit 9646ffc9a2

View File

@ -833,14 +833,12 @@ bool llvm::ComputeMultiple(Value *V, unsigned Base, Value *&Multiple,
switch (I->getOpcode()) {
default: break;
case Instruction::SExt: {
case Instruction::SExt:
if (!LookThroughSExt) return false;
// otherwise fall through to ZExt
}
case Instruction::ZExt: {
case Instruction::ZExt:
return ComputeMultiple(I->getOperand(0), Base, Multiple,
LookThroughSExt, Depth+1);
}
case Instruction::Shl:
case Instruction::Mul: {
Value *Op0 = I->getOperand(0);