Re: [PATCH] target/riscv: Fix implementation of HLVX.WU instruction

2020-10-14 Thread Alistair Francis
On Tue, Oct 13, 2020 at 10:23 AM Georg Kotheimer wrote: > > The HLVX.WU instruction is supposed to read a machine word, > but prior to this change it read a byte instead. > > Signed-off-by: Georg Kotheimer Reviewed-by: Alistair Francis Thanks! Applied to riscv-to-apply.next Alistair > ---

Re: [PATCH] target/riscv: Fix implementation of HLVX.WU instruction

2020-10-13 Thread Philippe Mathieu-Daudé
On 10/13/20 7:22 PM, Georg Kotheimer wrote: The HLVX.WU instruction is supposed to read a machine word, but prior to this change it read a byte instead. Fixes: 8c5362acb57 ("target/riscv: Allow generating hlv/hlvx/hsv instructions") Reviewed-by: Philippe Mathieu-Daudé Signed-off-by:

[PATCH] target/riscv: Fix implementation of HLVX.WU instruction

2020-10-13 Thread Georg Kotheimer
The HLVX.WU instruction is supposed to read a machine word, but prior to this change it read a byte instead. Signed-off-by: Georg Kotheimer --- target/riscv/op_helper.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/target/riscv/op_helper.c b/target/riscv/op_helper.c