* reload1.c (eliminate_regs_1): Call gen_rtx_raw_SUBREG for SUBREGs
[official-gcc.git] / libgo / go / math / arith_s390x.go
blob937f25faace8dd0754257abc0e65102b2b9f7b10
1 // Copyright 2016 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 ignore
7 package math
9 func log10TrampolineSetup(x float64) float64
10 func log10Asm(x float64) float64
12 func cosTrampolineSetup(x float64) float64
13 func cosAsm(x float64) float64
15 func coshTrampolineSetup(x float64) float64
16 func coshAsm(x float64) float64
18 func sinTrampolineSetup(x float64) float64
19 func sinAsm(x float64) float64
21 func sinhTrampolineSetup(x float64) float64
22 func sinhAsm(x float64) float64
24 func tanhTrampolineSetup(x float64) float64
25 func tanhAsm(x float64) float64
27 // hasVectorFacility reports whether the machine has the z/Architecture
28 // vector facility installed and enabled.
29 func hasVectorFacility() bool
31 var hasVX = hasVectorFacility()