diff options
author | Geoff Keating <geoffk@cygnus.com> | 2000-03-04 03:36:14 +0000 |
---|---|---|
committer | Geoff Keating <geoffk@cygnus.com> | 2000-03-04 03:36:14 +0000 |
commit | 8ed1e7d5894000c155acbd06ffd2ba07ea9f718b (patch) | |
tree | b9555e693953f12cd6a0a4f533922db17513d8b0 /soft-fp/soft-fp.h | |
parent | 706546ff10e0979cf49d002c03334810663b655f (diff) | |
download | glibc-8ed1e7d5894000c155acbd06ffd2ba07ea9f718b.tar glibc-8ed1e7d5894000c155acbd06ffd2ba07ea9f718b.tar.gz glibc-8ed1e7d5894000c155acbd06ffd2ba07ea9f718b.tar.bz2 glibc-8ed1e7d5894000c155acbd06ffd2ba07ea9f718b.zip |
In libc/:
* configure.in: Compute sizeof-long-double.
* configure: Regenerated.
* config.make.in: Make sizeof-long-double available to sub-makes.
In libc/soft-fp/:
* soft-fp.h (_FP_ROUND_ZERO): Cast 0 to void before using it
as a statement.
* sysdeps/powerpc/Makefile (routines): New file.
* sysdeps/powerpc/q_*: New files.
2000-03-03 Geoff Keating <geoffk@cygnus.com>
* configure.in: Compute sizeof-long-double.
* configure: Regenerated.
* config.make.in: Make sizeof-long-double available to sub-makes.
Diffstat (limited to 'soft-fp/soft-fp.h')
-rw-r--r-- | soft-fp/soft-fp.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/soft-fp/soft-fp.h b/soft-fp/soft-fp.h index 26798ecf25..6af8eaaf19 100644 --- a/soft-fp/soft-fp.h +++ b/soft-fp/soft-fp.h @@ -1,5 +1,5 @@ /* Software floating-point emulation. - Copyright (C) 1997,1998,1999 Free Software Foundation, Inc. + Copyright (C) 1997,1998,1999, 2000 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com), Jakub Jelinek (jj@ultra.linux.cz), @@ -107,7 +107,7 @@ do { \ _FP_FRAC_ADDI_##wc(X, _FP_WORK_ROUND); \ } while (0) -#define _FP_ROUND_ZERO(wc, X) 0 +#define _FP_ROUND_ZERO(wc, X) (void)0 #define _FP_ROUND_PINF(wc, X) \ do { \ |