mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-26 17:18:55 +00:00
import gdb-1999-09-08 snapshot
This commit is contained in:
@@ -623,10 +623,16 @@ print_floating (valaddr, type, stream)
|
||||
high &= 0xfffff;
|
||||
}
|
||||
else
|
||||
/* Extended. We can't detect NaNs for extendeds yet. Also note
|
||||
that currently extendeds get nuked to double in
|
||||
REGISTER_CONVERTIBLE. */
|
||||
is_nan = 0;
|
||||
{
|
||||
#ifdef TARGET_ANALYZE_FLOATING
|
||||
TARGET_ANALYZE_FLOATING;
|
||||
#else
|
||||
/* Extended. We can't detect extended NaNs for this target.
|
||||
Also note that currently extendeds get nuked to double in
|
||||
REGISTER_CONVERTIBLE. */
|
||||
is_nan = 0;
|
||||
#endif
|
||||
}
|
||||
|
||||
if (is_nan)
|
||||
{
|
||||
@@ -635,7 +641,7 @@ print_floating (valaddr, type, stream)
|
||||
(in an implementation-defined manner) distinguish between
|
||||
signaling and quiet NaN's. */
|
||||
if (high)
|
||||
fprintf_filtered (stream, "-NaN(0x%lx%.8lx)" + nonnegative,
|
||||
fprintf_filtered (stream, "-NaN(0x%lx%.8lx)" + !!nonnegative,
|
||||
high, low);
|
||||
else
|
||||
fprintf_filtered (stream, "-NaN(0x%lx)" + nonnegative, low);
|
||||
|
||||
Reference in New Issue
Block a user