mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-13 14:47:00 +00:00
IntegerDivision: Style cleanups, avoid warning about mixing || and && without parens.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@164216 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
aa6dad9f40
commit
1c1ab8f53d
@ -266,16 +266,14 @@ static Value* GenerateUnsignedDivisionCode(Value* Dividend, Value* Divisor,
|
||||
}
|
||||
|
||||
bool llvm::expandDivision(BinaryOperator* Div) {
|
||||
assert(Div->getOpcode() == Instruction::SDiv ||
|
||||
Div->getOpcode() == Instruction::UDiv
|
||||
&& "Trying to expand division from a non-division function");
|
||||
assert((Div->getOpcode() == Instruction::SDiv ||
|
||||
Div->getOpcode() == Instruction::UDiv) &&
|
||||
"Trying to expand division from a non-division function");
|
||||
|
||||
IRBuilder<> Builder(Div);
|
||||
|
||||
if (Div->getType()->isVectorTy()) {
|
||||
assert(0 && "Div over vectors not supported");
|
||||
return false;
|
||||
}
|
||||
if (Div->getType()->isVectorTy())
|
||||
llvm_unreachable("Div over vectors not supported");
|
||||
|
||||
// First prepare the sign if it's a signed division
|
||||
if (Div->getOpcode() == Instruction::SDiv) {
|
||||
|
Loading…
Reference in New Issue
Block a user