Skip to content

Commit

Permalink
doc: ArgsSizeUnknown it's defined in cmd/internal/objabi now
Browse files Browse the repository at this point in the history
Change-Id: I877c82788f3edbcb0b334b42049c1a06f36a6477
Reviewed-on: https://go-review.googlesource.com/123517
Reviewed-by: Rob Pike <[email protected]>
  • Loading branch information
snyh authored and robpike committed Jul 12, 2018
1 parent 964c15f commit 3df1f00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cmd/asm/internal/asm/asm.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 != '$' {
Expand Down

0 comments on commit 3df1f00

Please sign in to comment.