diff options
| author | Aurelien Jarno <aurelien@aurel32.net> | 2011-04-20 13:04:22 +0200 |
|---|---|---|
| committer | Aurelien Jarno <aurelien@aurel32.net> | 2011-04-25 11:18:32 +0200 |
| commit | f6714d365da068481d83787b4044134ae2ec5dfd (patch) | |
| tree | 9b8d71115117135c1a9e77ec0c491b51bcae45f0 /fpu/softfloat.h | |
| parent | d2b1027d5ffe7c6832bd50f167751171ed168ed0 (diff) | |
| download | focaccia-qemu-f6714d365da068481d83787b4044134ae2ec5dfd.tar.gz focaccia-qemu-f6714d365da068481d83787b4044134ae2ec5dfd.zip | |
softfloat: add floatx80_compare*() functions
Add floatx80_compare() and floatx80_compare_quiet() functions to match the softfloat-native ones. Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
Diffstat (limited to 'fpu/softfloat.h')
| -rw-r--r-- | fpu/softfloat.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fpu/softfloat.h b/fpu/softfloat.h index 7b3b88f1b1..5eff0858f1 100644 --- a/fpu/softfloat.h +++ b/fpu/softfloat.h @@ -550,6 +550,8 @@ int floatx80_eq_quiet( floatx80, floatx80 STATUS_PARAM ); int floatx80_le_quiet( floatx80, floatx80 STATUS_PARAM ); int floatx80_lt_quiet( floatx80, floatx80 STATUS_PARAM ); int floatx80_unordered_quiet( floatx80, floatx80 STATUS_PARAM ); +int floatx80_compare( floatx80, floatx80 STATUS_PARAM ); +int floatx80_compare_quiet( floatx80, floatx80 STATUS_PARAM ); int floatx80_is_quiet_nan( floatx80 ); int floatx80_is_signaling_nan( floatx80 ); floatx80 floatx80_maybe_silence_nan( floatx80 ); |