On Tue, 3 Dec 2024 at 20:39, Richard Henderson <richard.hender...@linaro.org> wrote: > > Now that float_status has a bunch of fp parameters, > it is easier to copy an existing structure than create > one from scratch. Begin by copying the structure that > corresponds to the FPSR and make only the adjustments > required for BFloat16 semantics. > > Signed-off-by: Richard Henderson <richard.hender...@linaro.org> > --- > target/arm/tcg/vec_helper.c | 20 +++++++------------- > 1 file changed, 7 insertions(+), 13 deletions(-)
Reviewed-by: Peter Maydell <peter.mayd...@linaro.org> I missed this in my grep for places where we set up a float_status I think because it's the only place where we use a struct initializer in a way that isn't literally "float_status s = { ... }". But I did a wider grep and I think this is the only place I missed like that. thanks -- PMM