Commit 8b27d28e authored by Brad Fitzpatrick's avatar Brad Fitzpatrick

cmd/5g, etc: remove outdated float type alias comment

Change-Id: Ie5fe5cf3e2926ba4f91271bd47f3f998c26e003e
Reviewed-on: https://go-review.googlesource.com/8914Reviewed-by: default avatarJosh Bleecher Snyder <josharian@gmail.com>
parent 47f09550
...@@ -23,7 +23,7 @@ var MAXWIDTH int64 = (1 << 32) - 1 ...@@ -23,7 +23,7 @@ var MAXWIDTH int64 = (1 << 32) - 1
/* /*
* go declares several platform-specific type aliases: * go declares several platform-specific type aliases:
* int, uint, float, and uintptr * int, uint, and uintptr
*/ */
var typedefs = []gc.Typedef{ var typedefs = []gc.Typedef{
gc.Typedef{"int", gc.TINT, gc.TINT32}, gc.Typedef{"int", gc.TINT, gc.TINT32},
...@@ -35,7 +35,6 @@ func betypeinit() { ...@@ -35,7 +35,6 @@ func betypeinit() {
gc.Widthptr = 4 gc.Widthptr = 4
gc.Widthint = 4 gc.Widthint = 4
gc.Widthreg = 4 gc.Widthreg = 4
} }
func main() { func main() {
......
...@@ -37,7 +37,7 @@ var cmpptr int = x86.ACMPQ ...@@ -37,7 +37,7 @@ var cmpptr int = x86.ACMPQ
/* /*
* go declares several platform-specific type aliases: * go declares several platform-specific type aliases:
* int, uint, float, and uintptr * int, uint, and uintptr
*/ */
var typedefs = []gc.Typedef{ var typedefs = []gc.Typedef{
gc.Typedef{"int", gc.TINT, gc.TINT64}, gc.Typedef{"int", gc.TINT, gc.TINT64},
......
...@@ -23,7 +23,7 @@ var MAXWIDTH int64 = 1 << 50 ...@@ -23,7 +23,7 @@ var MAXWIDTH int64 = 1 << 50
/* /*
* go declares several platform-specific type aliases: * go declares several platform-specific type aliases:
* int, uint, float, and uintptr * int, uint, and uintptr
*/ */
var typedefs = []gc.Typedef{ var typedefs = []gc.Typedef{
gc.Typedef{"int", gc.TINT, gc.TINT64}, gc.Typedef{"int", gc.TINT, gc.TINT64},
......
...@@ -23,7 +23,7 @@ var MAXWIDTH int64 = (1 << 32) - 1 ...@@ -23,7 +23,7 @@ var MAXWIDTH int64 = (1 << 32) - 1
/* /*
* go declares several platform-specific type aliases: * go declares several platform-specific type aliases:
* int, uint, float, and uintptr * int, uint, and uintptr
*/ */
var typedefs = []gc.Typedef{ var typedefs = []gc.Typedef{
gc.Typedef{"int", gc.TINT, gc.TINT32}, gc.Typedef{"int", gc.TINT, gc.TINT32},
...@@ -35,7 +35,6 @@ func betypeinit() { ...@@ -35,7 +35,6 @@ func betypeinit() {
gc.Widthptr = 4 gc.Widthptr = 4
gc.Widthint = 4 gc.Widthint = 4
gc.Widthreg = 4 gc.Widthreg = 4
} }
func main() { func main() {
......
...@@ -31,7 +31,7 @@ var MAXWIDTH int64 = 1 << 50 ...@@ -31,7 +31,7 @@ var MAXWIDTH int64 = 1 << 50
/* /*
* go declares several platform-specific type aliases: * go declares several platform-specific type aliases:
* int, uint, float, and uintptr * int, uint, and uintptr
*/ */
var typedefs = []gc.Typedef{ var typedefs = []gc.Typedef{
gc.Typedef{"int", gc.TINT, gc.TINT64}, gc.Typedef{"int", gc.TINT, gc.TINT64},
...@@ -43,7 +43,6 @@ func betypeinit() { ...@@ -43,7 +43,6 @@ func betypeinit() {
gc.Widthptr = 8 gc.Widthptr = 8
gc.Widthint = 8 gc.Widthint = 8
gc.Widthreg = 8 gc.Widthreg = 8
} }
func main() { func main() {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment