mirror of
https://github.com/golang/go
synced 2024-11-11 22:10:22 -07:00
test/fixedbugs/issue9355: fix build on arm and power64
Change-Id: I1ef770184ad1d42bcb58714d559f2cc866a919ab Signed-off-by: Shenghou Ma <minux@golang.org> Reviewed-on: https://go-review.googlesource.com/1880 Reviewed-by: Keith Randall <khr@golang.org>
This commit is contained in:
parent
76cc881ef0
commit
958e0792b5
@ -26,11 +26,12 @@ func main() {
|
||||
os.Exit(1)
|
||||
}
|
||||
out := run("go", "tool", a+"g", "-S", filepath.Join("fixedbugs", "issue9355.dir", "a.go"))
|
||||
// 6g/8g print the offset as dec, but 5g/9g print the offset as hex.
|
||||
patterns := []string{
|
||||
`rel 0\+\d t=1 \"\"\.x\+8\r?\n`, // y = &x.b
|
||||
`rel 0\+\d t=1 \"\"\.x\+28\r?\n`, // z = &x.d.q
|
||||
`rel 0\+\d t=1 \"\"\.b\+5\r?\n`, // c = &b[5]
|
||||
`rel 0\+\d t=1 \"\"\.x\+88\r?\n`, // w = &x.f[3].r
|
||||
`rel 0\+\d t=1 \"\"\.x\+8\r?\n`, // y = &x.b
|
||||
`rel 0\+\d t=1 \"\"\.x\+(28|1c)\r?\n`, // z = &x.d.q
|
||||
`rel 0\+\d t=1 \"\"\.b\+5\r?\n`, // c = &b[5]
|
||||
`rel 0\+\d t=1 \"\"\.x\+(88|58)\r?\n`, // w = &x.f[3].r
|
||||
}
|
||||
for _, p := range patterns {
|
||||
if ok, err := regexp.Match(p, out); !ok || err != nil {
|
||||
|
Loading…
Reference in New Issue
Block a user