Commit 39ed64b8 by Richard Stallman

(F_check): Do nothing in long double case, if NO_LONG_DOUBLE_IO.

From-SVN: r4522
parent 1a5e5e4b
......@@ -2159,6 +2159,10 @@ Procedure F_check(precision, val1) int precision; Long_double val1; {
/* On the Sun 3, sscanf clobbers 4 words,
which leads to a crash when this function tries to return. */
f2= "%le"; /* Input */
/* It is no use checking long doubles if we can't
read and write them. */
if (sizeof (Number) > sizeof(double))
return;
#else
Long_double new1;
if (sizeof(double) == sizeof(Long_double)) {
......
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