mbox series

[PULL] A Single RISC-V Patch for 4.0-rc1

Message ID 20190326055607.14694-1-palmer@sifive.com
State New
Headers show
Series [PULL] A Single RISC-V Patch for 4.0-rc1 | expand

Pull-request

git://github.com/palmer-dabbelt/qemu.git tags/riscv-for-master-4.0-rc1

Message

Palmer Dabbelt March 26, 2019, 5:56 a.m. UTC
The following changes since commit 62a172e6a77d9072bb1a18f295ce0fcf4b90a4f2:

  Update version for v4.0.0-rc0 release (2019-03-19 17:17:22 +0000)

are available in the Git repository at:

  git://github.com/palmer-dabbelt/qemu.git tags/riscv-for-master-4.0-rc1

for you to fetch changes up to f17e02cd3731bdfe2942d1d0b2a92f26da02408c:

  target/riscv: Zero extend the inputs of divuw and remuw (2019-03-22 00:26:39 -0700)

----------------------------------------------------------------
A Single RISC-V Patch for 4.0-rc1

If this is too late I'm OK with it being in rc2, but it fixes a concrete
regression and nobody has complained yet so I'd prefer it to be in rc1
if possible.

The fix is to zero-extend the inputs to DIVUW and REMUW, which was
exposed by the GCC test suite.

----------------------------------------------------------------
Palmer Dabbelt (1):
      target/riscv: Zero extend the inputs of divuw and remuw

 target/riscv/insn_trans/trans_rvm.inc.c |  4 ++--
 target/riscv/translate.c                | 21 +++++++++++++++++++++
 2 files changed, 23 insertions(+), 2 deletions(-)

Comments

Peter Maydell March 26, 2019, 9:28 a.m. UTC | #1
On Tue, 26 Mar 2019 at 06:54, Palmer Dabbelt <palmer@sifive.com> wrote:
>
> The following changes since commit 62a172e6a77d9072bb1a18f295ce0fcf4b90a4f2:
>
>   Update version for v4.0.0-rc0 release (2019-03-19 17:17:22 +0000)
>
> are available in the Git repository at:
>
>   git://github.com/palmer-dabbelt/qemu.git tags/riscv-for-master-4.0-rc1
>
> for you to fetch changes up to f17e02cd3731bdfe2942d1d0b2a92f26da02408c:
>
>   target/riscv: Zero extend the inputs of divuw and remuw (2019-03-22 00:26:39 -0700)
>
> ----------------------------------------------------------------
> A Single RISC-V Patch for 4.0-rc1
>
> If this is too late I'm OK with it being in rc2, but it fixes a concrete
> regression and nobody has complained yet so I'd prefer it to be in rc1
> if possible.
>
> The fix is to zero-extend the inputs to DIVUW and REMUW, which was
> exposed by the GCC test suite.
>
> ----------------------------------------------------------------
> Palmer Dabbelt (1):
>       target/riscv: Zero extend the inputs of divuw and remuw

Applied, thanks.

Please update the changelog at https://wiki.qemu.org/ChangeLog/4.0
for any user-visible changes.

-- PMM