diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2020-05-04 21:19:39 -0700 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2020-05-19 08:41:16 -0700 |
commit | a828b373bdabc7e53d1e218e3fc76f85b6674688 (patch) | |
tree | 883ce3ddef0b43cdc35f8fca6d9f8be79253bcab /tests | |
parent | c120391c0090d9c40425c92cdb00f38ea8588ff6 (diff) | |
download | qemu-a828b373bdabc7e53d1e218e3fc76f85b6674688.zip |
softfloat: Change tininess_before_rounding to bool
Slightly tidies the usage within softfloat.c and the
representation in float_status.
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/fp/fp-test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/fp/fp-test.c b/tests/fp/fp-test.c index 7d0faf2b47..43ef9628c4 100644 --- a/tests/fp/fp-test.c +++ b/tests/fp/fp-test.c @@ -989,7 +989,7 @@ static void QEMU_NORETURN run_test(void) verCases_tininessCode = 0; slowfloat_detectTininess = tmode; - qsf.float_detect_tininess = sf_tininess_to_qemu(tmode); + qsf.tininess_before_rounding = sf_tininess_to_qemu(tmode); if (attrs & FUNC_EFF_TININESSMODE || ((attrs & FUNC_EFF_TININESSMODE_REDUCEDPREC) && |