(union ieee854_long_double.ieee_nan): Add missing ; in little-endian case.

This commit is contained in:
Roland McGrath 1996-01-17 22:33:48 +00:00
parent 44534645d6
commit 069aa63891
2 changed files with 7 additions and 7 deletions

View File

@ -38,7 +38,7 @@ routines := brk sbrk sstk ioctl \
select \ select \
acct chroot fsync sync reboot \ acct chroot fsync sync reboot \
gethostid sethostid \ gethostid sethostid \
revoke vhangup mknod \ revoke vhangup \
swapon mktemp mkstemp \ swapon mktemp mkstemp \
ualarm usleep \ ualarm usleep \
gtty stty \ gtty stty \

View File

@ -1,4 +1,4 @@
/* Copyright (C) 1992, 1995 Free Software Foundation, Inc. /* Copyright (C) 1992, 1995, 1996 Free Software Foundation, Inc.
This file is part of the GNU C Library. This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or The GNU C Library is free software; you can redistribute it and/or
@ -21,7 +21,7 @@ Cambridge, MA 02139, USA. */
union ieee754_float union ieee754_float
{ {
float f; float f;
/* This is the IEEE 754 single-precision format. */ /* This is the IEEE 754 single-precision format. */
struct struct
{ {
@ -61,7 +61,7 @@ union ieee754_float
union ieee754_double union ieee754_double
{ {
double d; double d;
/* This is the IEEE 754 double-precision format. */ /* This is the IEEE 754 double-precision format. */
struct struct
{ {
@ -108,7 +108,7 @@ union ieee754_double
union ieee854_long_double union ieee854_long_double
{ {
long double d; long double d;
/* This is the IEEE 854 double-extended-precision format. */ /* This is the IEEE 854 double-extended-precision format. */
struct struct
{ {
@ -127,7 +127,7 @@ union ieee854_long_double
unsigned int empty:16; unsigned int empty:16;
#endif #endif
} ieee; } ieee;
/* This is for NaNs in the IEEE 854 double-extended-precision format. */ /* This is for NaNs in the IEEE 854 double-extended-precision format. */
struct struct
{ {
@ -144,7 +144,7 @@ union ieee854_long_double
unsigned int mantissa1:32; unsigned int mantissa1:32;
unsigned int mantissa0:30; unsigned int mantissa0:30;
unsigned int quiet_nan:1; unsigned int quiet_nan:1;
unsigned int one:1 unsigned int one:1;
unsigned int exponent:15; unsigned int exponent:15;
unsigned int negative:1; unsigned int negative:1;
unsigned int empty:16; unsigned int empty:16;