From: David Blaikie Date: Thu, 1 Dec 2011 20:58:30 +0000 (+0000) Subject: Fix unreachable return & simplify some branches. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=18c7ec1344b14c9a483b89f7ee73fba1cbdb2a38;p=oota-llvm.git Fix unreachable return & simplify some branches. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@145627 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Support/APInt.cpp b/lib/Support/APInt.cpp index 55cb433d893..506225f0640 100644 --- a/lib/Support/APInt.cpp +++ b/lib/Support/APInt.cpp @@ -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; }