libgo: update to go1.9
[official-gcc.git] / libgo / go / hash / crc32 / crc32_otherarch.go
blobc3acd25418220fd1efcd6c3f4802c5704ee48058
1 // Copyright 2011 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
5 // -build !amd64,!amd64p32,!s390x,!ppc64le,!arm64
7 package crc32
9 func archAvailableIEEE() bool { return false }
10 func archInitIEEE() { panic("not available") }
11 func archUpdateIEEE(crc uint32, p []byte) uint32 { panic("not available") }
13 func archAvailableCastagnoli() bool { return false }
14 func archInitCastagnoli() { panic("not available") }
15 func archUpdateCastagnoli(crc uint32, p []byte) uint32 { panic("not available") }