On 4/28/20 10:43 AM, Stephen Long wrote:
> +void HELPER(sve2_fcvtxnt)(void *vd, void *vn, void *vg,
> + void *status, uint32_t desc)
> +{
> + set_float_rounding_mode(float_round_to_odd, status);
> + HELPER(sve2_fcvtnt_ds)(vd, vn, vg, status, desc);
> +}This is incorrect, as it leaves the rounding mode set to odd. I've adjusted trans_FCVTXNT to the existing do_frint_mode, which handles switching to and back from a fixed rounding mode. r~
