On Thu, 26 Oct 2023 at 01:25, Richard Henderson <richard.hender...@linaro.org> wrote: > > Tested-by: Mark Cave-Ayland <mark.cave-ayl...@ilande.co.uk> > Acked-by: Mark Cave-Ayland <mark.cave-ayl...@ilande.co.uk> > Signed-off-by: Richard Henderson <richard.hender...@linaro.org>
> +static TCGv do_rdgsr(DisasContext *dc, TCGv dst) > +{ > + gen_trap_ifnofpu(dc); > + return cpu_gsr; > +} > + > +TRANS(RDGSR, 64, do_rd_special, true, a->rd, do_rdgsr) Hi; Coverity complains (CID 1523706) that we don't check the return value from this call to gen_trap_ifnofpu(), whereas we do check it on all but one other call. Is this OK? (Similarly in do_wrgsr(), CID 1523707.) thanks -- PMM