Re: Go patch committed: Provide index information on bounds check failure

2019-08-30 Thread Ian Lance Taylor
On Thu, Aug 29, 2019 at 1:50 PM Andreas Schwab wrote: > > On Aug 28 2019, Ian Lance Taylor wrote: > > > This patch to the Go frontend and libgo changes the panic message > > reported for an out of bounds index or slice operation to include the > > invalid values. > > This breaks aarch64/-mabi=ilp

Re: Go patch committed: Provide index information on bounds check failure

2019-08-29 Thread Andreas Schwab
On Aug 28 2019, Ian Lance Taylor wrote: > This patch to the Go frontend and libgo changes the panic message > reported for an out of bounds index or slice operation to include the > invalid values. This breaks aarch64/-mabi=ilp32. aarch64-suse-linux/ilp32/libgo/archive/tar/check-testlog: /usr/

Re: Go patch committed: Provide index information on bounds check failure

2019-08-29 Thread Rainer Orth
Hi Ian, > This patch to the Go frontend and libgo changes the panic message > reported for an out of bounds index or slice operation to include the > invalid values. This makes it easier for the user to see what the > problem is. This implements https://golang.org/cl/161477 in the > gofrontend,

Go patch committed: Provide index information on bounds check failure

2019-08-28 Thread Ian Lance Taylor
This patch to the Go frontend and libgo changes the panic message reported for an out of bounds index or slice operation to include the invalid values. This makes it easier for the user to see what the problem is. This implements https://golang.org/cl/161477 in the gofrontend, for https://golang.