]> Cypherpunks repositories - gostls13.git/commitdiff
doc: ArgsSizeUnknown it's defined in cmd/internal/objabi now
authorXia Bin <snyh@snyh.org>
Thu, 12 Jul 2018 06:35:39 +0000 (14:35 +0800)
committerRob Pike <r@golang.org>
Thu, 12 Jul 2018 08:22:37 +0000 (08:22 +0000)
Change-Id: I877c82788f3edbcb0b334b42049c1a06f36a6477
Reviewed-on: https://go-review.googlesource.com/123517
Reviewed-by: Rob Pike <r@golang.org>
src/cmd/asm/internal/asm/asm.go

index 1e2d5d39edb9621a5f181d2e614216aa42c85e95..627be09d088aed2acf3f238664375079edfd661a 100644 (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 != '$' {