Use the proper type for the roundmode array. Cc: Philippe Mathieu-Daudé <f4...@amsat.org> Cc: Yoshinori Sato <ys...@users.sourceforge.jp> Signed-off-by: Richard Henderson <richard.hender...@linaro.org> --- target/rx/op_helper.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/target/rx/op_helper.c b/target/rx/op_helper.c index 2139def3b2..b1772e9538 100644 --- a/target/rx/op_helper.c +++ b/target/rx/op_helper.c @@ -120,7 +120,7 @@ static void update_fpsw(CPURXState *env, float32 ret, uintptr_t retaddr) void helper_set_fpsw(CPURXState *env, uint32_t val) { - static const int roundmode[] = { + static const FloatRoundMode roundmode[] = { float_round_nearest_even, float_round_to_zero, float_round_up, -- 2.25.1