1
0
mirror of https://github.com/golang/go synced 2024-11-22 04:54:42 -07:00

cmd/compile/internal/ssa: enable testcases TestDebugLinesPushback and TestDebugLinesConvert on loong64

Change-Id: Id5c12c9edf278f2419900ebbfb0b7f388bafc9b1
Reviewed-on: https://go-review.googlesource.com/c/go/+/604177
Reviewed-by: Carlos Amedee <carlos@golang.org>
Reviewed-by: Keith Randall <khr@google.com>
Reviewed-by: Keith Randall <khr@golang.org>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Auto-Submit: Keith Randall <khr@golang.org>
This commit is contained in:
limeidan 2024-03-12 19:55:39 +08:00 committed by Gopher Robot
parent 32da8f51b8
commit ea435a31f9

View File

@ -81,7 +81,7 @@ func TestDebugLinesPushback(t *testing.T) {
default:
t.Skip("skipped for many architectures")
case "arm64", "amd64": // register ABI
case "arm64", "amd64", "loong64": // register ABI
fn := "(*List[go.shape.int]).PushBack"
testDebugLines(t, "-N -l", "pushback.go", fn, []int{17, 18, 19, 20, 21, 22, 24}, true)
}
@ -94,7 +94,7 @@ func TestDebugLinesConvert(t *testing.T) {
default:
t.Skip("skipped for many architectures")
case "arm64", "amd64": // register ABI
case "arm64", "amd64", "loong64": // register ABI
fn := "G[go.shape.int]"
testDebugLines(t, "-N -l", "convertline.go", fn, []int{9, 10, 11}, true)
}