5dc8f5d9e6
PR go/79146 math/big: fix build on s390x Don't build arith_decl_s390x.go for gccgo; it is only for assembly code that has not yet been ported to gccgo. For GCC PR 79146. From-SVN: r244731
25 lines
808 B
Go
25 lines
808 B
Go
// Copyright 2016 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
// +build ignore
|
|
// +build !math_big_pure_go
|
|
|
|
package big
|
|
|
|
func addVV_check(z, x, y []Word) (c Word)
|
|
func addVV_vec(z, x, y []Word) (c Word)
|
|
func addVV_novec(z, x, y []Word) (c Word)
|
|
func subVV_check(z, x, y []Word) (c Word)
|
|
func subVV_vec(z, x, y []Word) (c Word)
|
|
func subVV_novec(z, x, y []Word) (c Word)
|
|
func addVW_check(z, x []Word, y Word) (c Word)
|
|
func addVW_vec(z, x []Word, y Word) (c Word)
|
|
func addVW_novec(z, x []Word, y Word) (c Word)
|
|
func subVW_check(z, x []Word, y Word) (c Word)
|
|
func subVW_vec(z, x []Word, y Word) (c Word)
|
|
func subVW_novec(z, x []Word, y Word) (c Word)
|
|
func hasVectorFacility() bool
|
|
|
|
var hasVX = hasVectorFacility()
|