From: Josh Bleecher Snyder Date: Sun, 14 Mar 2021 21:27:06 +0000 (-0700) Subject: cmd/compile: fix whitespace in comment X-Git-Tag: go1.17beta1~1135 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=d0d38f0f707e69965a5f5a637fa568c646899d39;p=gostls13.git cmd/compile: fix whitespace in comment The whitespace was there to align with the following comment, but the extra whitespace was unnecessary; it wasn't gofmt'd. Then the file got gofmt'd, but the whitespace didn't get fixed. Change-Id: I45aad9605b99d83545e4e611ae3ea1b2ff9e6bf6 Reviewed-on: https://go-review.googlesource.com/c/go/+/301649 Trust: Josh Bleecher Snyder Run-TryBot: Josh Bleecher Snyder Reviewed-by: Emmanuel Odeke --- diff --git a/src/cmd/compile/internal/ssa/gen/genericOps.go b/src/cmd/compile/internal/ssa/gen/genericOps.go index 2a5b77bad0..85c58ef74c 100644 --- a/src/cmd/compile/internal/ssa/gen/genericOps.go +++ b/src/cmd/compile/internal/ssa/gen/genericOps.go @@ -264,7 +264,7 @@ var genericOps = []opData{ // ±0 → ±0 (sign preserved) // x<0 → NaN // NaN → NaN - {name: "Sqrt", argLength: 1}, // √arg0 (floating point, double precision) + {name: "Sqrt", argLength: 1}, // √arg0 (floating point, double precision) {name: "Sqrt32", argLength: 1}, // √arg0 (floating point, single precision) // Round to integer, float64 only.