Re: [PATCH] target/riscv: Fix froundnx.h nanbox check

2024-06-20 Thread Alistair Francis
On Sun, Jun 9, 2024 at 3:32 PM Branislav Brzak wrote: > > helper_froundnx_h function mistakenly uses single percision nanbox > check instead of the half percision one. This patch fixes the issue. > > Signed-off-by: Branislav Brzak Thanks! Applied to riscv-to-apply.next Alistair > --- > targe

Re: [PATCH] target/riscv: Fix froundnx.h nanbox check

2024-06-20 Thread Richard Henderson
On 6/8/24 14:45, Branislav Brzak wrote: t/riscv/fpu_helper.c b/target/riscv/fpu_helper.c index 871a70a316..91b1a56d10 100644 --- a/target/riscv/fpu_helper.c +++ b/target/riscv/fpu_helper.c @@ -676,7 +676,7 @@ uint64_t helper_fround_h(CPURISCVState *env, uint64_t rs1) uint64_t helper_froundnx

Re: [PATCH] target/riscv: Fix froundnx.h nanbox check

2024-06-20 Thread Alistair Francis
On Sun, Jun 9, 2024 at 3:32 PM Branislav Brzak wrote: > > helper_froundnx_h function mistakenly uses single percision nanbox > check instead of the half percision one. This patch fixes the issue. > > Signed-off-by: Branislav Brzak Reviewed-by: Alistair Francis Alistair > --- > target/riscv/f

[PATCH] target/riscv: Fix froundnx.h nanbox check

2024-06-08 Thread Branislav Brzak
helper_froundnx_h function mistakenly uses single percision nanbox check instead of the half percision one. This patch fixes the issue. Signed-off-by: Branislav Brzak --- target/riscv/fpu_helper.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target/riscv/fpu_helper.c b/tar