Re: [PATCH] target/riscv/debug.c: keep experimental rv128 support working

2022-06-06 Thread Alistair Francis
On Fri, Jun 3, 2022 at 1:55 AM Frédéric Pétrot wrote: > > Add an MXL_RV128 case in two switches so that no error is triggered when > using the -cpu x-rv128 option. > > Signed-off-by: Frédéric Pétrot Thanks! Applied to riscv-to-apply.next Alistair > --- > target/riscv/debug.c | 2 ++ > 1 file

Re: [PATCH] target/riscv/debug.c: keep experimental rv128 support working

2022-06-05 Thread Alistair Francis
On Fri, Jun 3, 2022 at 1:55 AM Frédéric Pétrot wrote: > > Add an MXL_RV128 case in two switches so that no error is triggered when > using the -cpu x-rv128 option. > > Signed-off-by: Frédéric Pétrot Acked-by: Alistair Francis Alistair > --- > target/riscv/debug.c | 2 ++ > 1 file changed, 2

Re: [PATCH] target/riscv/debug.c: keep experimental rv128 support working

2022-06-05 Thread Bin Meng
On Thu, Jun 2, 2022 at 11:55 PM Frédéric Pétrot wrote: > > Add an MXL_RV128 case in two switches so that no error is triggered when > using the -cpu x-rv128 option. > > Signed-off-by: Frédéric Pétrot > --- > target/riscv/debug.c | 2 ++ > 1 file changed, 2 insertions(+) > Reviewed-by: Bin Meng

[PATCH] target/riscv/debug.c: keep experimental rv128 support working

2022-06-02 Thread Frédéric Pétrot
Add an MXL_RV128 case in two switches so that no error is triggered when using the -cpu x-rv128 option. Signed-off-by: Frédéric Pétrot --- target/riscv/debug.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/target/riscv/debug.c b/target/riscv/debug.c index 2f2a51c732..fc6e13222f 100644 --