Re: [PATCH] rs6000: Fix disassembling a vector pair in gcc-10 in little-endian mode

2021-03-17 Thread Peter Bergner via Gcc-patches
On 3/17/21 10:45 AM, Segher Boessenkool wrote: > On Tue, Mar 16, 2021 at 05:48:27PM -0500, Peter Bergner wrote: >> This passed bootstrap and regtesting on powerpc64le-linux with no >> regressions. >> Ok for the GCC 10 release branch? > > Yes, this is okay. Thanks! Ok, pushed. Thanks! Peter

Re: [PATCH] rs6000: Fix disassembling a vector pair in gcc-10 in little-endian mode

2021-03-17 Thread Segher Boessenkool
Hi! On Tue, Mar 16, 2021 at 05:48:27PM -0500, Peter Bergner wrote: > In gcc-10, we don't handle disassembling a vector pair in little-endian mode > correctly. The solution is to make use of the disassemble accumulator code > that is endian friendly. > > Trunk does not have this bug, as the use o

[PATCH] rs6000: Fix disassembling a vector pair in gcc-10 in little-endian mode

2021-03-16 Thread Peter Bergner via Gcc-patches
In gcc-10, we don't handle disassembling a vector pair in little-endian mode correctly. The solution is to make use of the disassemble accumulator code that is endian friendly. Trunk does not have this bug, as the use of opaque modes for the MMA types "fixed" this issue there. This passed bootst