[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH v3 05/11] fp-test: fix signature of slow_clear_flags
From: |
Alex Bennée |
Subject: |
[Qemu-devel] [PATCH v3 05/11] fp-test: fix signature of slow_clear_flags and qemu_clear_flags |
Date: |
Tue, 22 Jan 2019 21:50:10 +0000 |
From: "Emilio G. Cota" <address@hidden>
To match the type in testfloat.
Signed-off-by: Emilio G. Cota <address@hidden>
Signed-off-by: Alex Bennée <address@hidden>
---
tests/fp/fp-test.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/tests/fp/fp-test.c b/tests/fp/fp-test.c
index fca576309c..2a35ef601d 100644
--- a/tests/fp/fp-test.c
+++ b/tests/fp/fp-test.c
@@ -789,7 +789,7 @@ static int set_init_flags(const char *flags)
return 0;
}
-static uint8_t slow_clear_flags(void)
+static uint_fast8_t slow_clear_flags(void)
{
uint8_t prev = slowfloat_exceptionFlags;
@@ -797,7 +797,7 @@ static uint8_t slow_clear_flags(void)
return prev;
}
-static uint8_t qemu_clear_flags(void)
+static uint_fast8_t qemu_clear_flags(void)
{
uint8_t prev = qemu_flags_to_sf(qsf.float_exception_flags);
--
2.17.1
- [Qemu-devel] [PATCH v3 01/11] fp-bench: fix update_random_ops, (continued)
- [Qemu-devel] [PATCH v3 01/11] fp-bench: fix update_random_ops, Alex Bennée, 2019/01/22
- [Qemu-devel] [PATCH v3 03/11] berkeley-testfloat-3: pull changes, Alex Bennée, 2019/01/22
- [Qemu-devel] [PATCH v3 04/11] tests/fp/Makefile: do not use gcc-only -W flags, Alex Bennée, 2019/01/22
- [Qemu-devel] [PATCH v3 02/11] fp-bench: remove wrong exponent raise in fill_random, Alex Bennée, 2019/01/22
- [Qemu-devel] [PATCH v3 08/11] include/fpu/softfloat: Fix compilation with Clang on s390x, Alex Bennée, 2019/01/22
- [Qemu-devel] [PATCH v3 10/11] scripts/archive-source: include softfloat tests, Alex Bennée, 2019/01/22
- [Qemu-devel] [PATCH v3 06/11] tests/fp/platform.h: include config-host.h, Alex Bennée, 2019/01/22
- [Qemu-devel] [PATCH v3 07/11] softfloat: enforce softfloat if the host's FMA is broken, Alex Bennée, 2019/01/22
- [Qemu-devel] [PATCH v3 09/11] tests/Makefile: add floating point tests, Alex Bennée, 2019/01/22
- [Qemu-devel] [PATCH v3 05/11] fp-test: fix signature of slow_clear_flags and qemu_clear_flags,
Alex Bennée <=
- [Qemu-devel] [PATCH v3 11/11] tests/Makfile: add check-softfloat rule, Alex Bennée, 2019/01/22
- Re: [Qemu-devel] [PATCH v3 00/11] current fpu/next queue (tests & build fix), no-reply, 2019/01/31