diff options
| author | apocelipes <seve3r@outlook.com> | 2024-04-16 07:42:26 +0000 |
|---|---|---|
| committer | Gopher Robot <gobot@golang.org> | 2024-04-16 17:46:09 +0000 |
| commit | 7a0e2db135daef2c0aeb98d5e3019807a71a7b4d (patch) | |
| tree | eb0b3b42e8bc1d556c5c4563e97c426b4dce27f2 /src/cmd/internal/obj/mips | |
| parent | 50c20dc3824d25811dad52be6afaa05ff709744a (diff) | |
| download | go-7a0e2db135daef2c0aeb98d5e3019807a71a7b4d.tar.xz | |
cmd,crypto/elliptic: fix typos in comments
Replace these incorrect fullwidth brackets with halfwidth brackets.
Change-Id: Ie17561c18334f9c07eedbff79e5f64ed4fc281bd
GitHub-Last-Rev: 94214be6cea75b4d1fa7b536cac523f061614d38
GitHub-Pull-Request: golang/go#66846
Reviewed-on: https://go-review.googlesource.com/c/go/+/579117
Reviewed-by: qiu laidongfeng2 <2645477756@qq.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Commit-Queue: Ian Lance Taylor <iant@google.com>
Auto-Submit: Ian Lance Taylor <iant@google.com>
Reviewed-by: Ian Lance Taylor <iant@google.com>
Reviewed-by: Cherry Mui <cherryyz@google.com>
Diffstat (limited to 'src/cmd/internal/obj/mips')
| -rw-r--r-- | src/cmd/internal/obj/mips/asm0.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd/internal/obj/mips/asm0.go b/src/cmd/internal/obj/mips/asm0.go index 2804073db1..2dd4818ded 100644 --- a/src/cmd/internal/obj/mips/asm0.go +++ b/src/cmd/internal/obj/mips/asm0.go @@ -718,7 +718,7 @@ func (c *ctxt0) aclass(a *obj.Addr) int { if c.instoffset <= 0xffff { return C_ANDCON } - if c.instoffset&0xffff == 0 && isuint32(uint64(c.instoffset)) { /* && ((instoffset & (1<<31)) == 0) */ + if c.instoffset&0xffff == 0 && isuint32(uint64(c.instoffset)) { /* && ((instoffset & (1<<31)) == 0) */ return C_UCON } if isint32(c.instoffset) || isuint32(uint64(c.instoffset)) { |
