mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +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));
|
||||
if (this->ult(square))
|
||||
return x_old;
|
||||
else if (this->ule(nextSquare)) {
|
||||
APInt midpoint((nextSquare - square).udiv(two));
|
||||
APInt offset(*this - square);
|
||||
if (offset.ult(midpoint))
|
||||
return x_old;
|
||||
else
|
||||
return x_old + 1;
|
||||
} else
|
||||
llvm_unreachable("Error in APInt::sqrt computation");
|
||||
assert(this->ule(nextSquare) && "Error in APInt::sqrt computation");
|
||||
APInt midpoint((nextSquare - square).udiv(two));
|
||||
APInt offset(*this - square);
|
||||
if (offset.ult(midpoint))
|
||||
return x_old;
|
||||
return x_old + 1;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user