Commit ab962c8d authored by Rob Pike's avatar Rob Pike

vet: add a progress message to asmdecl.go

Analogous to the one for .go files, it's for .s only and is protected
by the verbose flag.

R=golang-dev, bradfitz
CC=golang-dev
https://golang.org/cl/8030046
parent 99645db9
...@@ -104,6 +104,7 @@ func asmCheck(pkg *Package) { ...@@ -104,6 +104,7 @@ func asmCheck(pkg *Package) {
if !strings.HasSuffix(f.name, ".s") { if !strings.HasSuffix(f.name, ".s") {
continue continue
} }
Println("Checking file", f.name)
// Determine architecture from file name if possible. // Determine architecture from file name if possible.
var arch string var arch string
......
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