You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ cat test.s
TEXT foo(SB), $0
JMP 1(PC) MORE TEXT HERE
RET
$ go tool asm test.s
test.s:2: expected end of operand, found MORE
asm: assembly of test.s failed
$ cat x.s
TEXT foo(SB), $0
JMP 1(PC) MORE TEXT HERE
RET
$ go tool asm x.s
x.s:2: expected EOF, found MORE
asm: asm: assembly of x.s failed
$
Use of EOF here to mean end-of-line is confusing.
/cc @robpike
The text was updated successfully, but these errors were encountered: