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:
parent
dd352c2a81
commit
9646ffc9a2
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user