Skip to content

Commit

Permalink
cmd/compile/internal/ssa: enable testcases TestDebugLinesPushback and…
Browse files Browse the repository at this point in the history
… TestDebugLinesConvert on loong64

Change-Id: Id5c12c9edf278f2419900ebbfb0b7f388bafc9b1
Reviewed-on: https://go-review.googlesource.com/c/go/+/604177
Reviewed-by: Carlos Amedee <[email protected]>
Reviewed-by: Keith Randall <[email protected]>
Reviewed-by: Keith Randall <[email protected]>
LUCI-TryBot-Result: Go LUCI <[email protected]>
Auto-Submit: Keith Randall <[email protected]>
  • Loading branch information
limeidan authored and gopherbot committed Aug 14, 2024
1 parent 32da8f5 commit ea435a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cmd/compile/internal/ssa/debug_lines_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
Expand All @@ -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)
}
Expand Down

0 comments on commit ea435a3

Please sign in to comment.