1
0
mirror of https://github.com/golang/go synced 2024-11-07 16:46:17 -07:00

doc: ArgsSizeUnknown it's defined in cmd/internal/objabi now

Change-Id: I877c82788f3edbcb0b334b42049c1a06f36a6477
Reviewed-on: https://go-review.googlesource.com/123517
Reviewed-by: Rob Pike <r@golang.org>
This commit is contained in:
Xia Bin 2018-07-12 14:35:39 +08:00 committed by Rob Pike
parent 964c15f360
commit 3df1f00bfc

View File

@ -137,7 +137,7 @@ func (p *Parser) asmText(operands [][]lex.Token) {
// Bizarre syntax: $frameSize-argSize is two words, not subtraction.
// Both frameSize and argSize must be simple integers; only frameSize
// can be negative.
// The "-argSize" may be missing; if so, set it to obj.ArgsSizeUnknown.
// The "-argSize" may be missing; if so, set it to objabi.ArgsSizeUnknown.
// Parse left to right.
op := operands[next]
if len(op) < 2 || op[0].ScanToken != '$' {