aboutsummaryrefslogtreecommitdiff
path: root/test/run.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/run.go
parent62adf6fc2d70d9270b4213218e622c15504966be (diff)
downloadgo-2959128dc57618d7d5773411403ef0a255a9f72f.tar.gz
go-2959128dc57618d7d5773411403ef0a255a9f72f.zip
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/run.go')
-rw-r--r--test/run.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/run.go b/test/run.go
index 0914b742ab..93139e183e 100644
--- a/test/run.go
+++ b/test/run.go
@@ -1301,7 +1301,7 @@ var (
"arm": {"GOARM", "5", "6", "7"},
"arm64": {},
"mips": {"GOMIPS", "hardfloat", "softfloat"},
- "mips64": {},
+ "mips64": {"GOMIPS64", "hardfloat", "softfloat"},
"ppc64": {},
"ppc64le": {},
"s390x": {},