Fixes a bug in which we were still using uint8_t.
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
static uint32_t soft_to_fpcr_exc(CPUAlphaState *env)
{
- uint8_t exc = get_float_exception_flags(&FP_STATUS);
+ FloatExceptionFlags exc = get_float_exception_flags(&FP_STATUS);
uint32_t ret = 0;
if (unlikely(exc)) {
float64 fa;
int64_t ret;
uint32_t exc = 0;
- int flags;
+ FloatExceptionFlags flags;
fa = t_to_float64(a);
ret = float64_to_int64_modulo(fa, roundmode, &FP_STATUS);