From: isharipo Date: Tue, 3 Apr 2018 19:33:03 +0000 (+0300) Subject: math/big: remove "else" from if with block that ends with return X-Git-Tag: go1.11beta1~990 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=02952ad7a84846524a15f4e2b0db8083f74ce836;p=gostls13.git math/big: remove "else" from if with block that ends with return That "else" was needed due to gc DCE limitations. Now it's not the case and we can avoid go lint complaints. (See #23521 and https://golang.org/cl/91056.) There is inlining test for bigEndianWord, so if test is passing, no performance regression should occur. Change-Id: Id84d63f361e5e51a52293904ff042966c83c16e9 Reviewed-on: https://go-review.googlesource.com/104555 Reviewed-by: Brad Fitzpatrick Run-TryBot: Brad Fitzpatrick --- diff --git a/src/math/big/nat.go b/src/math/big/nat.go index 1f259410c4..1208ea76c8 100644 --- a/src/math/big/nat.go +++ b/src/math/big/nat.go @@ -1245,9 +1245,8 @@ func (z nat) bytes(buf []byte) (i int) { func bigEndianWord(buf []byte) Word { if _W == 64 { return Word(binary.BigEndian.Uint64(buf)) - } else { // Explicit else is required to get inlining. See #23521 - return Word(binary.BigEndian.Uint32(buf)) } + return Word(binary.BigEndian.Uint32(buf)) } // setBytes interprets buf as the bytes of a big-endian unsigned