aboutsummaryrefslogtreecommitdiff
path: root/src/hash
diff options
context:
space:
mode:
authorJoe Tsai <thebrokentoaster@gmail.com>2017-12-01 00:59:45 +0000
committerJoe Tsai <joetsai@google.com>2017-12-01 01:12:26 +0000
commitb53088a63436ac49d2344a733a50d529b5f7244e (patch)
tree9aeacef6839fd1e6c8ad28be2b3cb45756f6a19f /src/hash
parent206568566473e9a91c05b8b0153d27ecbee466b7 (diff)
downloadgo-b53088a63436ac49d2344a733a50d529b5f7244e.tar.gz
go-b53088a63436ac49d2344a733a50d529b5f7244e.zip
Revert "go/printer: forbid empty line before first comment in block"
This reverts commit 08f19bbde1b01227fdc2fa2d326e4029bb74dd96. Reason for revert: The changed transformation takes effect on a larger set of code snippets than expected. For example, this: func foo() { // Comment bar() } becomes: func foo() { // Comment bar() } This is an unintended consequence. Change-Id: Ifca88d6267dab8a8170791f7205124712bf8ace8 Reviewed-on: https://go-review.googlesource.com/81335 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org> Run-TryBot: Joe Tsai <joetsai@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org>
Diffstat (limited to 'src/hash')
-rw-r--r--src/hash/crc32/crc32_ppc64le.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/hash/crc32/crc32_ppc64le.go b/src/hash/crc32/crc32_ppc64le.go
index 8e54d52b94..686722761d 100644
--- a/src/hash/crc32/crc32_ppc64le.go
+++ b/src/hash/crc32/crc32_ppc64le.go
@@ -65,6 +65,7 @@ func archInitIEEE() {
// archUpdateIEEE calculates the checksum of p using vectorizedIEEE.
func archUpdateIEEE(crc uint32, p []byte) uint32 {
+
// Check if vector code should be used. If not aligned, then handle those
// first up to the aligned bytes.