mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
cmd: fix mismatched symbols
Change-Id: I6365cdf22ad5e669908519d0ee8b78d76ae8f1b9 Reviewed-on: https://go-review.googlesource.com/c/go/+/532075 Reviewed-by: Than McIntosh <thanm@google.com> TryBot-Result: Gopher Robot <gobot@golang.org> Auto-Submit: Ian Lance Taylor <iant@google.com> Run-TryBot: shuang cui <imcusg@gmail.com> Reviewed-by: Ian Lance Taylor <iant@google.com>
This commit is contained in:
parent
352c8835e7
commit
36b14a78b5
8 changed files with 8 additions and 8 deletions
|
|
@ -753,7 +753,7 @@ func (c *ctxt0) aclass(a *obj.Addr) int {
|
|||
if c.instoffset <= 0xfff {
|
||||
return C_ANDCON
|
||||
}
|
||||
if c.instoffset&0xfff == 0 && isuint32(uint64(c.instoffset)) { // && (instoffset & (1<<31)) == 0)
|
||||
if c.instoffset&0xfff == 0 && isuint32(uint64(c.instoffset)) { // && ((instoffset & (1<<31)) == 0)
|
||||
return C_UCON
|
||||
}
|
||||
if isint32(c.instoffset) || isuint32(uint64(c.instoffset)) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue