mirror of
https://github.com/qemu/qemu.git
synced 2025-08-17 07:16:28 +00:00
softfloat: Use FloatRelation for fracN_cmp
Since the caller, partsN_compare, is now exclusively using FloatRelation, it's clearer to use it here too. Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Message-Id: <20220401132240.79730-4-richard.henderson@linaro.org>
This commit is contained in:
parent
9343c88444
commit
dee3fcfbb3
@ -957,21 +957,23 @@ static void frac128_allones(FloatParts128 *a)
|
|||||||
|
|
||||||
#define frac_allones(A) FRAC_GENERIC_64_128(allones, A)(A)
|
#define frac_allones(A) FRAC_GENERIC_64_128(allones, A)(A)
|
||||||
|
|
||||||
static int frac64_cmp(FloatParts64 *a, FloatParts64 *b)
|
static FloatRelation frac64_cmp(FloatParts64 *a, FloatParts64 *b)
|
||||||
{
|
{
|
||||||
return a->frac == b->frac ? 0 : a->frac < b->frac ? -1 : 1;
|
return (a->frac == b->frac ? float_relation_equal
|
||||||
|
: a->frac < b->frac ? float_relation_less
|
||||||
|
: float_relation_greater);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int frac128_cmp(FloatParts128 *a, FloatParts128 *b)
|
static FloatRelation frac128_cmp(FloatParts128 *a, FloatParts128 *b)
|
||||||
{
|
{
|
||||||
uint64_t ta = a->frac_hi, tb = b->frac_hi;
|
uint64_t ta = a->frac_hi, tb = b->frac_hi;
|
||||||
if (ta == tb) {
|
if (ta == tb) {
|
||||||
ta = a->frac_lo, tb = b->frac_lo;
|
ta = a->frac_lo, tb = b->frac_lo;
|
||||||
if (ta == tb) {
|
if (ta == tb) {
|
||||||
return 0;
|
return float_relation_equal;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return ta < tb ? -1 : 1;
|
return ta < tb ? float_relation_less : float_relation_greater;
|
||||||
}
|
}
|
||||||
|
|
||||||
#define frac_cmp(A, B) FRAC_GENERIC_64_128(cmp, A)(A, B)
|
#define frac_cmp(A, B) FRAC_GENERIC_64_128(cmp, A)(A, B)
|
||||||
|
Loading…
Reference in New Issue
Block a user