diff options
author | Taylor Simpson <tsimpson@quicinc.com> | 2021-04-08 20:07:37 -0500 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2021-05-01 08:31:43 -0700 |
commit | 8c36752435da380ddf2733d499c4be2cdb8c1b6f (patch) | |
tree | d817d274b21404fbb0e607d33b5f4cec16959f5a /target/hexagon | |
parent | 85511161f7cd1f52a177413e2128b1a05b71163e (diff) |
Hexagon (target/hexagon) change type of softfloat_roundingmodes
Suggested-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Taylor Simpson <tsimpson@quicinc.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <1617930474-31979-10-git-send-email-tsimpson@quicinc.com>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'target/hexagon')
-rw-r--r-- | target/hexagon/arch.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/hexagon/arch.c b/target/hexagon/arch.c index 699e2cfb8f..bb51f19a3d 100644 --- a/target/hexagon/arch.c +++ b/target/hexagon/arch.c @@ -95,7 +95,7 @@ int32_t conv_round(int32_t a, int n) /* Floating Point Stuff */ -static const int softfloat_roundingmodes[] = { +static const FloatRoundMode softfloat_roundingmodes[] = { float_round_nearest_even, float_round_to_zero, float_round_down, |