Skip to content

Commit 53dede9

Browse files
committed
cmd/compile: fix typo in comment
Change-Id: I25fbd63f10ea9892589ad44cc45761926aff0648 Reviewed-on: https://go-review.googlesource.com/c/go/+/212841 Reviewed-by: Ian Lance Taylor <[email protected]>
1 parent 4b43700 commit 53dede9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cmd/compile/internal/ssa/gen/genericOps.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ var genericOps = []opData{
340340
// Note: ConstX are sign-extended even when the type of the value is unsigned.
341341
// For instance, uint8(0xaa) is stored as auxint=0xffffffffffffffaa.
342342
{name: "Const64", aux: "Int64"}, // value is auxint
343-
{name: "Const32F", aux: "Float32"}, // value is math.Float64frombits(uint64(auxint)) and is exactly prepresentable as float 32
343+
{name: "Const32F", aux: "Float32"}, // value is math.Float64frombits(uint64(auxint)) and is exactly representable as float 32
344344
{name: "Const64F", aux: "Float64"}, // value is math.Float64frombits(uint64(auxint))
345345
{name: "ConstInterface"}, // nil interface
346346
{name: "ConstSlice"}, // nil slice

0 commit comments

Comments
 (0)