Commit caf2bf26 authored by Rob Pike's avatar Rob Pike

[dev.cc] cmd/go: enable verifyAsm for all architectures

Change-Id: Ia1ba28c81e31d149c59a48d5f71628ac0ff14d8e
Reviewed-on: https://go-review.googlesource.com/5283Reviewed-by: 's avatarMinux Ma <minux@golang.org>
Reviewed-by: 's avatarRuss Cox <rsc@golang.org>
parent f60fb5c5
......@@ -1702,11 +1702,8 @@ func (gcToolchain) asm(b *builder, p *Package, obj, ofile, sfile string) error {
if err := toolVerify(b, p, "new"+archChar+"a", ofile, args); err != nil {
return err
}
switch goarch {
case "386", "amd64", "amd64p32", "arm": // Asm only supports these architectures so far.
if err := toolVerify(b, p, "asm", ofile, args); err != nil {
return err
}
if err := toolVerify(b, p, "asm", ofile, args); err != nil {
return err
}
}
return nil
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment