mirror of
https://github.com/golang/go
synced 2024-11-02 08:01:26 +00:00
[dev.typeparams] cmd/compile: fix formatting
Looks like CL 322850 didn't have the change to ARM64Ops.go properly gofmt'ed. Change-Id: I1a080bc13ea27b897fbb91f18ded754ce440994b Reviewed-on: https://go-review.googlesource.com/c/go/+/324109 Trust: Keith Randall <khr@golang.org> Run-TryBot: Keith Randall <khr@golang.org> TryBot-Result: Go Bot <gobot@golang.org> Reviewed-by: Cherry Mui <cherryyz@google.com>
This commit is contained in:
parent
58ad36b359
commit
b1f48e8add
1 changed files with 10 additions and 10 deletions
|
@ -759,17 +759,17 @@ func init() {
|
||||||
}
|
}
|
||||||
|
|
||||||
archs = append(archs, arch{
|
archs = append(archs, arch{
|
||||||
name: "ARM64",
|
name: "ARM64",
|
||||||
pkg: "cmd/internal/obj/arm64",
|
pkg: "cmd/internal/obj/arm64",
|
||||||
genfile: "../../arm64/ssa.go",
|
genfile: "../../arm64/ssa.go",
|
||||||
ops: ops,
|
ops: ops,
|
||||||
blocks: blocks,
|
blocks: blocks,
|
||||||
regnames: regNamesARM64,
|
regnames: regNamesARM64,
|
||||||
ParamIntRegNames: "R0 R1 R2 R3 R4 R5 R6 R7 R8 R9 R10 R11 R12 R13 R14 R15",
|
ParamIntRegNames: "R0 R1 R2 R3 R4 R5 R6 R7 R8 R9 R10 R11 R12 R13 R14 R15",
|
||||||
ParamFloatRegNames: "F0 F1 F2 F3 F4 F5 F6 F7 F8 F9 F10 F11 F12 F13 F14 F15",
|
ParamFloatRegNames: "F0 F1 F2 F3 F4 F5 F6 F7 F8 F9 F10 F11 F12 F13 F14 F15",
|
||||||
gpregmask: gp,
|
gpregmask: gp,
|
||||||
fpregmask: fp,
|
fpregmask: fp,
|
||||||
framepointerreg: -1, // not used
|
framepointerreg: -1, // not used
|
||||||
linkreg: int8(num["R30"]),
|
linkreg: int8(num["R30"]),
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue