aboutsummaryrefslogtreecommitdiff
path: root/include/fpu
diff options
context:
space:
mode:
authorAlex Bennée <alex.bennee@linaro.org>2017-12-05 17:14:42 +0000
committerAlex Bennée <alex.bennee@linaro.org>2018-02-21 10:21:47 +0000
commit0c4c90929143a530730e2879204a55a30bf63758 (patch)
tree8de5fe0c925eccc2468a53a4e4ca4afff7467543 /include/fpu
parent89360067071b1844bf745682e18db7dde74cdb8d (diff)
downloadqemu-0c4c90929143a530730e2879204a55a30bf63758.zip
qemu-0c4c90929143a530730e2879204a55a30bf63758.tar.gz
qemu-0c4c90929143a530730e2879204a55a30bf63758.tar.bz2
fpu/softfloat: re-factor compare
The compare function was already expanded from a macro. I keep the macro expansion but move most of the logic into a compare_decomposed. Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'include/fpu')
-rw-r--r--include/fpu/softfloat.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/fpu/softfloat.h b/include/fpu/softfloat.h
index 35df225..cebe37b 100644
--- a/include/fpu/softfloat.h
+++ b/include/fpu/softfloat.h
@@ -251,6 +251,8 @@ float16 float16_minnum(float16, float16, float_status *status);
float16 float16_maxnum(float16, float16, float_status *status);
float16 float16_minnummag(float16, float16, float_status *status);
float16 float16_maxnummag(float16, float16, float_status *status);
+int float16_compare(float16, float16, float_status *status);
+int float16_compare_quiet(float16, float16, float_status *status);
int float16_is_quiet_nan(float16, float_status *status);
int float16_is_signaling_nan(float16, float_status *status);