public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug go/102102] New: [12 Regression] trunk 20210827 ftbfs libgo on x86_64-linux-gnux32
@ 2021-08-27 17:57 doko at debian dot org
  2021-08-30  7:45 ` [Bug go/102102] " rguenth at gcc dot gnu.org
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: doko at debian dot org @ 2021-08-27 17:57 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=102102

            Bug ID: 102102
           Summary: [12 Regression] trunk 20210827 ftbfs libgo on
                    x86_64-linux-gnux32
           Product: gcc
           Version: 12.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: go
          Assignee: ian at airs dot com
          Reporter: doko at debian dot org
                CC: cmang at google dot com
  Target Milestone: ---

trunk 20210827 ftbfs libgo on x86_64-linux-gnux32, also seen on
x86_64-linux-gnu when configuring with --with-multilib-list=m32,m64,mx32


/packages/gcc/snap/gcc-snapshot-20210827/src/libgo/go/runtime/hash64.go:35:30:
error: integer constant overflow
   35 |         seed ^= hashkey[0] ^ m1
      |                              ^
/packages/gcc/snap/gcc-snapshot-20210827/src/libgo/go/runtime/hash64.go:61:50:
error: integer constant overflow
   61 |                                 seed = mix(r8(p)^m2, r8(add(p,
8))^seed)
      |                                                  ^
/packages/gcc/snap/gcc-snapshot-20210827/src/libgo/go/runtime/hash64.go:62:60:
error: integer constant overflow
   62 |                                 seed1 = mix(r8(add(p, 16))^m3,
r8(add(p, 24))^seed1)
      |                                                            ^
/packages/gcc/snap/gcc-snapshot-20210827/src/libgo/go/runtime/hash64.go:63:60:
error: integer constant overflow
   63 |                                 seed2 = mix(r8(add(p, 32))^m4,
r8(add(p, 40))^seed2)
      |                                                            ^
/packages/gcc/snap/gcc-snapshot-20210827/src/libgo/go/runtime/hash64.go:69:42:
error: integer constant overflow
   69 |                         seed = mix(r8(p)^m2, r8(add(p, 8))^seed)
      |                                          ^
/packages/gcc/snap/gcc-snapshot-20210827/src/libgo/go/runtime/hash64.go:76:20:
error: integer constant overflow
   76 |         return mix(m5^s, mix(a^m2, b^seed))
      |                    ^
/packages/gcc/snap/gcc-snapshot-20210827/src/libgo/go/runtime/hash64.go:76:32:
error: integer constant overflow
   76 |         return mix(m5^s, mix(a^m2, b^seed))
      |                                ^
/packages/gcc/snap/gcc-snapshot-20210827/src/libgo/go/runtime/hash64.go:81:22:
error: integer constant overflow
   81 |         return mix(m5^4, mix(a^m2, a^seed^hashkey[0]^m1))
      |                      ^
/packages/gcc/snap/gcc-snapshot-20210827/src/libgo/go/runtime/hash64.go:81:32:
error: integer constant overflow
   81 |         return mix(m5^4, mix(a^m2, a^seed^hashkey[0]^m1))
      |                                ^
/packages/gcc/snap/gcc-snapshot-20210827/src/libgo/go/runtime/hash64.go:81:54:
error: integer constant overflow
   81 |         return mix(m5^4, mix(a^m2, a^seed^hashkey[0]^m1))
      |                                                      ^
/packages/gcc/snap/gcc-snapshot-20210827/src/libgo/go/runtime/hash64.go:86:22:
error: integer constant overflow
   86 |         return mix(m5^8, mix(a^m2, a^seed^hashkey[0]^m1))
      |                      ^
/packages/gcc/snap/gcc-snapshot-20210827/src/libgo/go/runtime/hash64.go:86:32:
error: integer constant overflow
   86 |         return mix(m5^8, mix(a^m2, a^seed^hashkey[0]^m1))
      |                                ^
/packages/gcc/snap/gcc-snapshot-20210827/src/libgo/go/runtime/hash64.go:86:54:
error: integer constant overflow
   86 |         return mix(m5^8, mix(a^m2, a^seed^hashkey[0]^m1))
      |                                                      ^

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Bug go/102102] [12 Regression] trunk 20210827 ftbfs libgo on x86_64-linux-gnux32
  2021-08-27 17:57 [Bug go/102102] New: [12 Regression] trunk 20210827 ftbfs libgo on x86_64-linux-gnux32 doko at debian dot org
@ 2021-08-30  7:45 ` rguenth at gcc dot gnu.org
  2021-09-03 12:29 ` hjl.tools at gmail dot com
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: rguenth at gcc dot gnu.org @ 2021-08-30  7:45 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=102102

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |12.0

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Bug go/102102] [12 Regression] trunk 20210827 ftbfs libgo on x86_64-linux-gnux32
  2021-08-27 17:57 [Bug go/102102] New: [12 Regression] trunk 20210827 ftbfs libgo on x86_64-linux-gnux32 doko at debian dot org
  2021-08-30  7:45 ` [Bug go/102102] " rguenth at gcc dot gnu.org
@ 2021-09-03 12:29 ` hjl.tools at gmail dot com
  2021-09-07 22:05 ` cvs-commit at gcc dot gnu.org
  2021-09-07 22:23 ` ian at airs dot com
  3 siblings, 0 replies; 5+ messages in thread
From: hjl.tools at gmail dot com @ 2021-09-03 12:29 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=102102

H.J. Lu <hjl.tools at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
     Ever confirmed|0                           |1
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2021-09-03
                 CC|                            |hjl.tools at gmail dot com

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Bug go/102102] [12 Regression] trunk 20210827 ftbfs libgo on x86_64-linux-gnux32
  2021-08-27 17:57 [Bug go/102102] New: [12 Regression] trunk 20210827 ftbfs libgo on x86_64-linux-gnux32 doko at debian dot org
  2021-08-30  7:45 ` [Bug go/102102] " rguenth at gcc dot gnu.org
  2021-09-03 12:29 ` hjl.tools at gmail dot com
@ 2021-09-07 22:05 ` cvs-commit at gcc dot gnu.org
  2021-09-07 22:23 ` ian at airs dot com
  3 siblings, 0 replies; 5+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2021-09-07 22:05 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=102102

--- Comment #1 from CVS Commits <cvs-commit at gcc dot gnu.org> ---
The master branch has been updated by Ian Lance Taylor <ian@gcc.gnu.org>:

https://gcc.gnu.org/g:21b046bade1c2666b82139d18c8b318bb051415e

commit r12-3401-g21b046bade1c2666b82139d18c8b318bb051415e
Author: Ian Lance Taylor <iant@golang.org>
Date:   Tue Sep 7 14:37:55 2021 -0700

    runtime: use hash32, not hash64, for amd64p32, mips64p32, mips64p32le

    Fixes PR go/102102

    Reviewed-on: https://go-review.googlesource.com/c/gofrontend/+/348015

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Bug go/102102] [12 Regression] trunk 20210827 ftbfs libgo on x86_64-linux-gnux32
  2021-08-27 17:57 [Bug go/102102] New: [12 Regression] trunk 20210827 ftbfs libgo on x86_64-linux-gnux32 doko at debian dot org
                   ` (2 preceding siblings ...)
  2021-09-07 22:05 ` cvs-commit at gcc dot gnu.org
@ 2021-09-07 22:23 ` ian at airs dot com
  3 siblings, 0 replies; 5+ messages in thread
From: ian at airs dot com @ 2021-09-07 22:23 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=102102

Ian Lance Taylor <ian at airs dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         Resolution|---                         |FIXED
             Status|NEW                         |RESOLVED

--- Comment #2 from Ian Lance Taylor <ian at airs dot com> ---
Should be fixed now, I hope.

I don't know how to test this, as my desktop does not support x32 mode.

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2021-09-07 22:23 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-27 17:57 [Bug go/102102] New: [12 Regression] trunk 20210827 ftbfs libgo on x86_64-linux-gnux32 doko at debian dot org
2021-08-30  7:45 ` [Bug go/102102] " rguenth at gcc dot gnu.org
2021-09-03 12:29 ` hjl.tools at gmail dot com
2021-09-07 22:05 ` cvs-commit at gcc dot gnu.org
2021-09-07 22:23 ` ian at airs dot com

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).