mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
cmd/objdump: updates from golang.org/x/arch/ppc64/ppc64asm
Update the ppc64x disassembly code for use by objdump from golang.org/x/arch/ppc64/ppc64asm commit fcea5ea. Enable the objdump testcase for external linking on ppc64le make a minor fix to the expected output. Fixes #17447 Change-Id: I769cc7f8bfade594690a476dfe77ab33677ac03b Reviewed-on: https://go-review.googlesource.com/32015 Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
This commit is contained in:
parent
a850dbdef2
commit
45b43f6198
9 changed files with 259 additions and 205 deletions
|
|
@ -54,7 +54,7 @@ var ppcNeed = []string{
|
|||
"fmthello.go:6",
|
||||
"TEXT main.main(SB)",
|
||||
"BR main.main(SB)",
|
||||
"BL fmt.Println(SB)",
|
||||
"CALL fmt.Println(SB)",
|
||||
"RET",
|
||||
}
|
||||
|
||||
|
|
@ -143,7 +143,7 @@ func TestDisasmExtld(t *testing.T) {
|
|||
t.Skipf("skipping on %s", runtime.GOOS)
|
||||
}
|
||||
switch runtime.GOARCH {
|
||||
case "ppc64", "ppc64le":
|
||||
case "ppc64":
|
||||
t.Skipf("skipping on %s, no support for external linking, issue 9038", runtime.GOARCH)
|
||||
case "arm64":
|
||||
t.Skipf("skipping on %s, issue 10106", runtime.GOARCH)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue