diff options
author | Ian Lance Taylor <ian@gcc.gnu.org> | 2017-06-21 22:11:04 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2017-06-21 22:11:04 +0000 |
commit | b95cd48b01b1340475dd7a408af6d665822a8cf5 (patch) | |
tree | 72625660a997749459ccfe70d454dc9febc61f6f /libgo/go/syscall | |
parent | 1701a9d8f0ca4153bbf3cf75487c6a14606e5121 (diff) | |
download | gcc-b95cd48b01b1340475dd7a408af6d665822a8cf5.zip gcc-b95cd48b01b1340475dd7a408af6d665822a8cf5.tar.gz gcc-b95cd48b01b1340475dd7a408af6d665822a8cf5.tar.bz2 |
libgo: remove old MIPS architecture names
This removes the old names for the 3 main MIPS ABIs: mipso32, mipsn32
and mipsn64. It also removes the mipso64 ABI which has no equivalent
architecture name in go. This ABI has been dead for sometime and I doubt
anyone will miss it.
Reviewed-on: https://go-review.googlesource.com/46154
From-SVN: r249477
Diffstat (limited to 'libgo/go/syscall')
-rw-r--r-- | libgo/go/syscall/endian_big.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgo/go/syscall/endian_big.go b/libgo/go/syscall/endian_big.go index b96594e..f8ee7cf 100644 --- a/libgo/go/syscall/endian_big.go +++ b/libgo/go/syscall/endian_big.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // -// +build ppc64 s390x mips mips64 armbe arm64be m68k ppc mipso32 mipsn32 mipso64 mipsn64 mips64p32 s390 sparc sparc64 +// +build ppc64 s390x mips mips64 armbe arm64be m68k ppc mips64p32 s390 sparc sparc64 package syscall |