Re: [PATCH v2 7/7] target/riscv: Remove pc_succ_insn from DisasContext

2023-05-25 Thread Alistair Francis
On Wed, May 24, 2023 at 12:07 AM Weiwei Li wrote: > > pc_succ_insn is no longer useful after the introduce of cur_insn_len > and all pc related value use diff value instead of absolute value. > > Signed-off-by: Weiwei Li > Signed-off-by: Junqiang Wang Reviewed-by: Alistair Francis Alistair >

Re: [PATCH v2 7/7] target/riscv: Remove pc_succ_insn from DisasContext

2023-05-23 Thread Richard Henderson
On 5/23/23 06:59, Weiwei Li wrote: pc_succ_insn is no longer useful after the introduce of cur_insn_len and all pc related value use diff value instead of absolute value. Signed-off-by: Weiwei Li Signed-off-by: Junqiang Wang --- target/riscv/translate.c | 7 +-- 1 file changed, 1 insertio

[PATCH v2 7/7] target/riscv: Remove pc_succ_insn from DisasContext

2023-05-23 Thread Weiwei Li
pc_succ_insn is no longer useful after the introduce of cur_insn_len and all pc related value use diff value instead of absolute value. Signed-off-by: Weiwei Li Signed-off-by: Junqiang Wang --- target/riscv/translate.c | 7 +-- 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/ta