]> Cypherpunks repositories - gostls13.git/commitdiff
vet: add a progress message to asmdecl.go
authorRob Pike <r@golang.org>
Wed, 27 Mar 2013 23:55:16 +0000 (16:55 -0700)
committerRob Pike <r@golang.org>
Wed, 27 Mar 2013 23:55:16 +0000 (16:55 -0700)
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

src/cmd/vet/asmdecl.go

index 2cfaa938fcd62ed3e0e4e99081b35c17bc4ba322..c23514c28f7fc2c4da3d590c190e8184448b3eaa 100644 (file)
@@ -104,6 +104,7 @@ func asmCheck(pkg *Package) {
                if !strings.HasSuffix(f.name, ".s") {
                        continue
                }
+               Println("Checking file", f.name)
 
                // Determine architecture from file name if possible.
                var arch string