summaryrefslogtreecommitdiffstats
path: root/gnu
diff options
context:
space:
mode:
authorpst <pst@FreeBSD.org>1996-09-22 00:55:46 +0000
committerpst <pst@FreeBSD.org>1996-09-22 00:55:46 +0000
commit69c1743fffac00ff290dceacf7daac37be6683bf (patch)
treee368274bba73f0fdeba080ddabec76fda3b474dc /gnu
parentd5953cd2b278bd1f259701af30432642c57ffc0b (diff)
downloadFreeBSD-src-69c1743fffac00ff290dceacf7daac37be6683bf.zip
FreeBSD-src-69c1743fffac00ff290dceacf7daac37be6683bf.tar.gz
Fix up some compilation warnings.
Diffstat (limited to 'gnu')
-rw-r--r--gnu/usr.bin/as/config/atof-ieee.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/usr.bin/as/config/atof-ieee.c b/gnu/usr.bin/as/config/atof-ieee.c
index 7040f11..72ea080 100644
--- a/gnu/usr.bin/as/config/atof-ieee.c
+++ b/gnu/usr.bin/as/config/atof-ieee.c
@@ -18,7 +18,7 @@
the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#ifndef lint
-static char rcsid[] = "$Id: atof-ieee.c,v 1.2 1993/11/03 00:53:04 paul Exp $";
+static char rcsid[] = "$Id: atof-ieee.c,v 1.3 1995/05/30 04:46:46 rgrimes Exp $";
#endif
#include "as.h"
@@ -128,7 +128,7 @@ static void
LITTLENUM_TYPE *words;
{
as_bad("cannot create floating-point number");
- words[0] = ((unsigned) -1) >> 1; /* Zero the leftmost bit */
+ words[0] = LITTLENUM_MASK >> 1; /* Zero the leftmost bit */
words[1] = -1;
words[2] = -1;
words[3] = -1;
OpenPOWER on IntegriCloud