Commit 161ca48c by Richard Stallman

*** empty log message ***

From-SVN: r273
parent d0c84390
...@@ -128,7 +128,8 @@ extern double (atof) (); ...@@ -128,7 +128,8 @@ extern double (atof) ();
#ifndef REAL_VALUE_TRUNCATE #ifndef REAL_VALUE_TRUNCATE
#define REAL_VALUE_TRUNCATE(mode, x) \ #define REAL_VALUE_TRUNCATE(mode, x) \
(GET_MODE_BITSIZE (mode) == GET_MODE_BITSIZE (SFmode) ? (float) (x) : (x)) (GET_MODE_BITSIZE (mode) == sizeof (float) * HOST_BITS_PER_CHAR \
? (float) (x) : (x))
#endif #endif
/* Determine whether a floating-point value X is infinite. */ /* Determine whether a floating-point value X is infinite. */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment