aboutsummaryrefslogtreecommitdiff
path: root/test/codegen/math.go
diff options
context:
space:
mode:
authorMilan Knezevic <milan.knezevic@mips.com>2018-04-26 15:37:27 +0200
committerCherry Zhang <cherryyz@google.com>2018-04-27 14:50:17 +0000
commit2959128dc57618d7d5773411403ef0a255a9f72f (patch)
tree8f626d6af629fe6db769edcff712ff19a8342b24 /test/codegen/math.go
parent62adf6fc2d70d9270b4213218e622c15504966be (diff)
downloadgo-2959128dc57618d7d5773411403ef0a255a9f72f.tar.xz
cmd/compile: add softfloat support to mips64{,le}
mips64 softfloat support is based on mips implementation and introduces new enviroment variable GOMIPS64. GOMIPS64 is a GOARCH=mips64{,le} specific option, for a choice between hard-float and soft-float. Valid values are 'hardfloat' (default) and 'softfloat'. It is passed to the assembler as 'GOMIPS64_{hardfloat,softfloat}'. Change-Id: I7f73078627f7cb37c588a38fb5c997fe09c56134 Reviewed-on: https://go-review.googlesource.com/108475 Reviewed-by: Cherry Zhang <cherryyz@google.com> Run-TryBot: Cherry Zhang <cherryyz@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org>
Diffstat (limited to 'test/codegen/math.go')
-rw-r--r--test/codegen/math.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/codegen/math.go b/test/codegen/math.go
index f73321200b..1ecba26847 100644
--- a/test/codegen/math.go
+++ b/test/codegen/math.go
@@ -40,7 +40,8 @@ func sqrt(x float64) float64 {
// 386/387:"FSQRT" 386/sse2:"SQRTSD"
// arm64:"FSQRTD"
// arm/7:"SQRTD"
- // mips/hardfloat:"SQRTD" mips64:"SQRTD"
+ // mips/hardfloat:"SQRTD" mips/softfloat:-"SQRTD"
+ // mips64/hardfloat:"SQRTD" mips64/softfloat:-"SQRTD"
return math.Sqrt(x)
}