Re: [PATCH 05/76] target/arm: Use uint32_t in vfp_exceptbits_from_host()

2025-01-25 Thread Richard Henderson
On 1/24/25 08:27, Peter Maydell wrote: In vfp_exceptbits_from_host(), we accumulate the FPSR flags in an "int", and our return type is also "int". However, the only callsite returns the same information as a uint32_t, and more generally we handle FPSR values in the code as uint32_t, not int. Brin

[PATCH 05/76] target/arm: Use uint32_t in vfp_exceptbits_from_host()

2025-01-24 Thread Peter Maydell
In vfp_exceptbits_from_host(), we accumulate the FPSR flags in an "int", and our return type is also "int". However, the only callsite returns the same information as a uint32_t, and more generally we handle FPSR values in the code as uint32_t, not int. Bring this function in to line with that conv