From: Aldy Hernandez Date: Fri, 26 Aug 2022 14:57:09 +0000 (+0200) Subject: Add real_iszero to real.* X-Git-Tag: basepoints/gcc-14~4978 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1d3145360f95910f0661da0364b91dc7962d44fa;p=thirdparty%2Fgcc.git Add real_iszero to real.* We have real_isnegzero but no real_iszero. We could memcmp with 0, but that's just ugly. gcc/ChangeLog: * real.cc (real_iszero): New. * real.h (real_iszero): New. --- diff --git a/gcc/real.cc b/gcc/real.cc index dcf41b79f608..96f05ec68ca9 100644 --- a/gcc/real.cc +++ b/gcc/real.cc @@ -1272,6 +1272,22 @@ real_isneg (const REAL_VALUE_TYPE *r) return r->sign; } +/* Determine whether a floating-point value X is plus or minus zero. */ + +bool +real_iszero (const REAL_VALUE_TYPE *r) +{ + return r->cl == rvc_zero; +} + +/* Determine whether a floating-point value X is zero with SIGN. */ + +bool +real_iszero (const REAL_VALUE_TYPE *r, bool sign) +{ + return real_iszero (r) && r->sign == sign; +} + /* Determine whether a floating-point value X is minus zero. */ bool diff --git a/gcc/real.h b/gcc/real.h index e01f9ed72827..ec78e8a89324 100644 --- a/gcc/real.h +++ b/gcc/real.h @@ -295,6 +295,12 @@ extern bool real_isneg (const REAL_VALUE_TYPE *); /* Determine whether a floating-point value X is minus zero. */ extern bool real_isnegzero (const REAL_VALUE_TYPE *); +/* Determine whether a floating-point value X is plus or minus zero. */ +extern bool real_iszero (const REAL_VALUE_TYPE *); + +/* Determine whether a floating-point value X is zero with SIGN. */ +extern bool real_iszero (const REAL_VALUE_TYPE *, bool sign); + /* Test relationships between reals. */ extern bool real_identical (const REAL_VALUE_TYPE *, const REAL_VALUE_TYPE *); extern bool real_equal (const REAL_VALUE_TYPE *, const REAL_VALUE_TYPE *);