From: Matthew Dempsky Date: Wed, 17 Aug 2016 15:57:15 +0000 (-0700) Subject: cmd/compile/internal/s390x: cleanup betypeinit X-Git-Tag: go1.8beta1~1817 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=73fdba2601f1aeaa6565cfb03e4c5c8c98489b7a;p=gostls13.git cmd/compile/internal/s390x: cleanup betypeinit The Width{int,ptr,reg} assignments are no longer necessary since golang.org/cl/21623. The other arch's betypeinit functions were cleaned up, but apparently this one was missed. Change-Id: I1c7f074d7864a561659c1f98aef604f57f285fd0 Reviewed-on: https://go-review.googlesource.com/27272 Run-TryBot: Matthew Dempsky Reviewed-by: Michael Munday TryBot-Result: Gobot Gobot --- diff --git a/src/cmd/compile/internal/s390x/galign.go b/src/cmd/compile/internal/s390x/galign.go index d0d621e557..09bc5d1f5d 100644 --- a/src/cmd/compile/internal/s390x/galign.go +++ b/src/cmd/compile/internal/s390x/galign.go @@ -10,9 +10,6 @@ import ( ) func betypeinit() { - gc.Widthptr = 8 - gc.Widthint = 8 - gc.Widthreg = 8 } func Main() {