On 5/18/21 10:05 AM, Bruno Larsen (billionai) wrote:
+ int old_rounding_mode = get_float_rounding_mode(&env->fp_status);
FloatRoundMode is a better type for the variable.
@@ -3136,8 +3136,10 @@ void helper_##op(CPUPPCState *env, ppc_vsr_t *xt, ppc_vsr_t *xb) \ { \ ppc_vsr_t t = *xt; \ int i; \ + int curr_rounding_mode; \
Likewise. Otherwise, Reviewed-by: Richard Henderson <richard.hender...@linaro.org> r~