From 23cd406496827a7f14ada2a0756c3edd129b0218 Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Wed, 14 Dec 2011 10:25:16 -0500 Subject: [PATCH] hash/crc32: make compatible with go/build R=golang-dev, r CC=golang-dev https://golang.org/cl/5486060 --- src/pkg/hash/crc32/crc32_generic.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/pkg/hash/crc32/crc32_generic.go b/src/pkg/hash/crc32/crc32_generic.go index 27aabd903b..c3fdcd685c 100644 --- a/src/pkg/hash/crc32/crc32_generic.go +++ b/src/pkg/hash/crc32/crc32_generic.go @@ -2,6 +2,8 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. +// +build 386 arm + package crc32 // The file contains the generic version of updateCastagnoli which just calls -- 2.48.1