diff options
| author | Archana R <aravind5@in.ibm.com> | 2022-06-14 09:24:32 -0500 |
|---|---|---|
| committer | Lynn Boger <laboger@linux.vnet.ibm.com> | 2022-08-17 13:56:55 +0000 |
| commit | d09c6ac41769cc782ec982ffc8f20fbd796791f8 (patch) | |
| tree | 68cf1c26ba66faca4c82dd8bc3ecdb98a2a371f3 /test/codegen/math.go | |
| parent | 2c46cc8b8997f4f5cdb7766e4e2bdf8e57f67c76 (diff) | |
| download | go-d09c6ac41769cc782ec982ffc8f20fbd796791f8.tar.xz | |
test/codegen: updated multiple tests to verify on ppc64,ppc64le
Updated multiple tests in test/codegen: math.go, mathbits.go, shift.go
and slices.go to verify on ppc64/ppc64le as well
Change-Id: Id88dd41569b7097819fb4d451b615f69cf7f7a94
Reviewed-on: https://go-review.googlesource.com/c/go/+/412115
TryBot-Result: Gopher Robot <gobot@golang.org>
Run-TryBot: Archana Ravindar <aravind5@in.ibm.com>
Reviewed-by: Than McIntosh <thanm@google.com>
Reviewed-by: Paul Murphy <murp@ibm.com>
Reviewed-by: Ian Lance Taylor <iant@google.com>
Diffstat (limited to 'test/codegen/math.go')
| -rw-r--r-- | test/codegen/math.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/codegen/math.go b/test/codegen/math.go index ad154e0c40..7c76d26b38 100644 --- a/test/codegen/math.go +++ b/test/codegen/math.go @@ -60,6 +60,8 @@ func sqrt(x float64) float64 { // mips/hardfloat:"SQRTD" mips/softfloat:-"SQRTD" // mips64/hardfloat:"SQRTD" mips64/softfloat:-"SQRTD" // wasm:"F64Sqrt" + // ppc64le:"FSQRT" + // ppc64:"FSQRT" return math.Sqrt(x) } @@ -71,6 +73,8 @@ func sqrt32(x float32) float32 { // mips/hardfloat:"SQRTF" mips/softfloat:-"SQRTF" // mips64/hardfloat:"SQRTF" mips64/softfloat:-"SQRTF" // wasm:"F32Sqrt" + // ppc64le:"FSQRTS" + // ppc64:"FSQRTS" return float32(math.Sqrt(float64(x))) } |
