diff options
Diffstat (limited to 'llgo/third_party/gofrontend/libgo/go/strconv/atoi.go')
-rw-r--r-- | llgo/third_party/gofrontend/libgo/go/strconv/atoi.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llgo/third_party/gofrontend/libgo/go/strconv/atoi.go b/llgo/third_party/gofrontend/libgo/go/strconv/atoi.go index cbf0380ec82..9ecec5a58b9 100644 --- a/llgo/third_party/gofrontend/libgo/go/strconv/atoi.go +++ b/llgo/third_party/gofrontend/libgo/go/strconv/atoi.go @@ -31,7 +31,7 @@ func rangeError(fn, str string) *NumError { return &NumError{fn, str, ErrRange} } -const intSize = 32 << uint(^uint(0)>>63) +const intSize = 32 << (^uint(0) >> 63) // IntSize is the size in bits of an int or uint value. const IntSize = intSize |