mirror of
https://github.com/RPCS3/llvm.git
synced 2025-04-03 13:51:39 +00:00
Fix unreachable return & simplify some branches.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@145627 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
cb497b888a
commit
18c7ec1344
@ -1440,15 +1440,11 @@ APInt APInt::sqrt() const {
|
|||||||
APInt nextSquare((x_old + 1) * (x_old +1));
|
APInt nextSquare((x_old + 1) * (x_old +1));
|
||||||
if (this->ult(square))
|
if (this->ult(square))
|
||||||
return x_old;
|
return x_old;
|
||||||
else if (this->ule(nextSquare)) {
|
assert(this->ule(nextSquare) && "Error in APInt::sqrt computation");
|
||||||
APInt midpoint((nextSquare - square).udiv(two));
|
APInt midpoint((nextSquare - square).udiv(two));
|
||||||
APInt offset(*this - square);
|
APInt offset(*this - square);
|
||||||
if (offset.ult(midpoint))
|
if (offset.ult(midpoint))
|
||||||
return x_old;
|
return x_old;
|
||||||
else
|
|
||||||
return x_old + 1;
|
|
||||||
} else
|
|
||||||
llvm_unreachable("Error in APInt::sqrt computation");
|
|
||||||
return x_old + 1;
|
return x_old + 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user