0
1
mirror of https://github.com/golang/go synced 2025-05-24 14:55:02 +00:00

test/codegen, runtime/pprof, runtime: apply fmt

Change-Id: Ife4e065246729319c39e57a4fbd8e6f7b37724e1
GitHub-Last-Rev: e71803eaeb
GitHub-Pull-Request: 
Reviewed-on: https://go-review.googlesource.com/c/go/+/228901
Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Tobias Klauser <tobias.klauser@gmail.com>
This commit is contained in:
alex-semenyuk
2020-04-20 20:33:19 +00:00
committed by Tobias Klauser
parent 17fbc818ff
commit 876c1feb7d
4 changed files with 17 additions and 16 deletions

@ -104,7 +104,7 @@ func cmovfloatint2(x, y float64) float64 {
// amd64:"CMOVQHI"
// arm64:"CSEL\tMI"
// wasm:"Select"
r = r - ldexp(y, (rexp-yexp))
r = r - ldexp(y, rexp-yexp)
}
return r
}