aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/go/testdata/script/vet_asm.txt
blob: 59b35ec7c285890b11d7309aec89d063043dbc57 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
env GO111MODULE=off

# Issue 27665. Verify that "go vet" analyzes non-Go files.

[!amd64] skip
! go vet -asmdecl a
stderr 'f: invalid MOVW of x'

# -c flag shows context
! go vet -c=2 -asmdecl a
stderr '...invalid MOVW...'
stderr '1	.*TEXT'
stderr '2		MOVW'
stderr '3		RET'
stderr '4'

# -json causes success, even with diagnostics and errors.
go vet -json -asmdecl a
stderr '"a": {'
stderr   '"asmdecl":'
stderr     '"posn": ".*asm.s:2:1",'
stderr     '"message": ".*invalid MOVW.*"'

-- a/a.go --
package a

func f(x int8)

-- a/asm.s --
TEXT ·f(SB),0,$0-1
	MOVW	x+0(FP), AX
	RET