On Tue, Oct 28, 2025 at 4:25 AM Anton Johansson via <[email protected]> wrote: > > Fix to 64 bits to match size of instruction start words. > > Signed-off-by: Anton Johansson <[email protected]> > Reviewed-by: Pierrick Bouvier <[email protected]> > Reviewed-by: Philippe Mathieu-Daudé <[email protected]>
Acked-by: Alistair Francis <[email protected]> Alistair > --- > target/riscv/cpu.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/target/riscv/cpu.h b/target/riscv/cpu.h > index 1e4128128b..f901608d0e 100644 > --- a/target/riscv/cpu.h > +++ b/target/riscv/cpu.h > @@ -258,7 +258,7 @@ struct CPUArchState { > /* shadow stack register for zicfiss extension */ > uint64_t ssp; > /* env place holder for extra word 2 during unwind */ > - target_ulong excp_uw2; > + uint64_t excp_uw2; > /* sw check code for sw check exception */ > target_ulong sw_check_code; > #ifdef CONFIG_USER_ONLY > -- > 2.51.0 > >
