Commit 412ce1f7 authored by Rob Pike's avatar Rob Pike

[dev.cc] cmd/go: enable verifyAsm for asm on ARM

Change-Id: I182ea770110255a5ac1c91cf30dd650696a8f1db
Reviewed-on: https://go-review.googlesource.com/4961Reviewed-by: default avatarRuss Cox <rsc@golang.org>
parent 68bcc132
...@@ -1693,7 +1693,7 @@ func (gcToolchain) asm(b *builder, p *Package, obj, ofile, sfile string) error { ...@@ -1693,7 +1693,7 @@ func (gcToolchain) asm(b *builder, p *Package, obj, ofile, sfile string) error {
return err return err
} }
switch goarch { switch goarch {
case "386", "amd64": // Asm only supports these architectures so far. case "386", "amd64", "amd64p32", "arm": // Asm only supports these architectures so far.
if err := asmVerify(b, p, "asm", ofile, args); err != nil { if err := asmVerify(b, p, "asm", ofile, args); err != nil {
return err return err
} }
......
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