diff options
| author | Xia Bin <snyh@snyh.org> | 2018-07-12 14:35:39 +0800 |
|---|---|---|
| committer | Rob Pike <r@golang.org> | 2018-07-12 08:22:37 +0000 |
| commit | 3df1f00bfc0739cf2b6cf046b920221bdfa748e3 (patch) | |
| tree | dddc419b1358722afc47960508f3986dc6249037 /src/cmd/asm | |
| parent | 964c15f36006e6f13695afd4e25e38a18d5c4c2b (diff) | |
| download | go-3df1f00bfc0739cf2b6cf046b920221bdfa748e3.tar.xz | |
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>
Diffstat (limited to 'src/cmd/asm')
| -rw-r--r-- | src/cmd/asm/internal/asm/asm.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd/asm/internal/asm/asm.go b/src/cmd/asm/internal/asm/asm.go index 1e2d5d39ed..627be09d08 100644 --- a/src/cmd/asm/internal/asm/asm.go +++ b/src/cmd/asm/internal/asm/asm.go @@ -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 != '$' { |
