mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
cmd/compile/internal/gc: make SSAGenFPJump a method of SSAGenState
Change-Id: Ie22a08c93dfcfd4b336e7b158415448dd55b2c11 Reviewed-on: https://go-review.googlesource.com/38407 Run-TryBot: Matthew Dempsky <mdempsky@google.com> Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org>
This commit is contained in:
parent
cfb3c8df62
commit
22ea7fc1a9
3 changed files with 5 additions and 5 deletions
|
|
@ -807,10 +807,10 @@ func ssaGenBlock(s *gc.SSAGenState, b, next *ssa.Block) {
|
|||
p.To.Sym = b.Aux.(*obj.LSym)
|
||||
|
||||
case ssa.Block386EQF:
|
||||
gc.SSAGenFPJump(s, b, next, &eqfJumps)
|
||||
s.FPJump(b, next, &eqfJumps)
|
||||
|
||||
case ssa.Block386NEF:
|
||||
gc.SSAGenFPJump(s, b, next, &nefJumps)
|
||||
s.FPJump(b, next, &nefJumps)
|
||||
|
||||
case ssa.Block386EQ, ssa.Block386NE,
|
||||
ssa.Block386LT, ssa.Block386GE,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue