mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-01-12 00:45:11 +08:00
*** empty log message ***
From-SVN: r604
This commit is contained in:
parent
c5abcf1dde
commit
11030a604b
@ -142,9 +142,14 @@ extern double (atof) ();
|
|||||||
#define REAL_VALUE_ISNAN(x) (target_isnan (x))
|
#define REAL_VALUE_ISNAN(x) (target_isnan (x))
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/* Determine whether a floating-point value X is negative. */
|
||||||
|
#ifndef REAL_VALUE_NEGATIVE
|
||||||
|
#define REAL_VALUE_NEGATIVE(x) (target_negative (x))
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Determine whether a floating-point value X is minus 0. */
|
/* Determine whether a floating-point value X is minus 0. */
|
||||||
#ifndef REAL_VALUE_MINUS_ZERO
|
#ifndef REAL_VALUE_MINUS_ZERO
|
||||||
#define REAL_VALUE_MINUS_ZERO(x) (target_minus_zero (x))
|
#define REAL_VALUE_MINUS_ZERO(x) ((x) == 0 && REAL_VALUE_NEGATIVE (x))
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Constant real values 0, 1, 2, and -1. */
|
/* Constant real values 0, 1, 2, and -1. */
|
||||||
|
Loading…
Reference in New Issue
Block a user