summaryrefslogtreecommitdiff
path: root/libgo/go/cmd/cgo/main.go
diff options
context:
space:
mode:
authorian <ian@138bc75d-0d04-0410-961f-82ee72b054a4>2017-06-21 22:11:04 +0000
committerian <ian@138bc75d-0d04-0410-961f-82ee72b054a4>2017-06-21 22:11:04 +0000
commit648dc544240b0b5b08f3386c926ed70b76b40991 (patch)
tree72625660a997749459ccfe70d454dc9febc61f6f /libgo/go/cmd/cgo/main.go
parent074bbd7b6a221b0446c73b3f4c2e1bf6cc7b2634 (diff)
downloadgcc-648dc544240b0b5b08f3386c926ed70b76b40991.tar.gz
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 git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@249477 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgo/go/cmd/cgo/main.go')
-rw-r--r--libgo/go/cmd/cgo/main.go8
1 files changed, 0 insertions, 8 deletions
diff --git a/libgo/go/cmd/cgo/main.go b/libgo/go/cmd/cgo/main.go
index e8f3a0334b0..ac102050dad 100644
--- a/libgo/go/cmd/cgo/main.go
+++ b/libgo/go/cmd/cgo/main.go
@@ -145,10 +145,6 @@ var ptrSizeMap = map[string]int64{
"arm": 4,
"arm64": 8,
"m68k": 4,
- "mipso32": 4,
- "mipsn32": 4,
- "mipso64": 8,
- "mipsn64": 8,
"mips": 4,
"mipsle": 4,
"mips64": 8,
@@ -171,10 +167,6 @@ var intSizeMap = map[string]int64{
"arm": 4,
"arm64": 8,
"m68k": 4,
- "mipso32": 4,
- "mipsn32": 4,
- "mipso64": 8,
- "mipsn64": 8,
"mips": 4,
"mipsle": 4,
"mips64": 8,