aboutsummaryrefslogtreecommitdiff
path: root/gcc/real.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@hxi.com>2002-01-10 00:56:56 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2002-01-10 00:56:56 +0000
commitf4f4d0f8fb7c1bfcd5c97beea05d15ede02e5a26 (patch)
tree128e1e60a316c7721be28b666b9ba4f7130e4a88 /gcc/real.c
parent54a8a50f804adc0ee5c30ed6e96150ec0c4c4375 (diff)
downloadgcc-f4f4d0f8fb7c1bfcd5c97beea05d15ede02e5a26.zip
gcc-f4f4d0f8fb7c1bfcd5c97beea05d15ede02e5a26.tar.gz
gcc-f4f4d0f8fb7c1bfcd5c97beea05d15ede02e5a26.tar.bz2
read-rtl.c: Fix formatting.
* read-rtl.c: Fix formatting. * real.c: Likewise. * regclass.c: Likewise. * regrename.c: Likewise. * reg-stack.c: Likewise. * reload1.c: Likewise. * reload.c: Likewise. * rtl.c: Likewise. From-SVN: r48704
Diffstat (limited to 'gcc/real.c')
-rw-r--r--gcc/real.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/real.c b/gcc/real.c
index 1986cad..3a12594 100644
--- a/gcc/real.c
+++ b/gcc/real.c
@@ -1,7 +1,7 @@
/* real.c - implementation of REAL_ARITHMETIC, REAL_VALUE_ATOF,
and support for XFmode IEEE extended real floating point arithmetic.
Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998,
- 1999, 2000 Free Software Foundation, Inc.
+ 1999, 2000, 2002 Free Software Foundation, Inc.
Contributed by Stephen L. Moshier (moshier@world.std.com).
This file is part of GCC.
@@ -272,7 +272,7 @@ typedef unsigned int UHItype __attribute__ ((mode (HI)));
do { \
memcpy ((r), (e), 2*NE); \
if (2*NE < sizeof(*r)) \
- memset ((char *)(r) + 2*NE, 0, sizeof(*r) - 2*NE); \
+ memset ((char *) (r) + 2*NE, 0, sizeof(*r) - 2*NE); \
} while (0)
# else /* no XFmode */
# if MAX_LONG_DOUBLE_TYPE_SIZE == 128
@@ -284,7 +284,7 @@ typedef unsigned int UHItype __attribute__ ((mode (HI)));
do { \
memcpy ((r), (e), 2*NE); \
if (2*NE < sizeof(*r)) \
- memset ((char *)(r) + 2*NE, 0, sizeof(*r) - 2*NE); \
+ memset ((char *) (r) + 2*NE, 0, sizeof(*r) - 2*NE); \
} while (0)
#else
#define NE 6
@@ -2423,7 +2423,7 @@ edivm (den, num)
tnum = (((unsigned EMULONG) num[M]) << 16) + num[M+1];
/* Do not execute the divide instruction if it will overflow. */
- if ((tdenm * (unsigned long)0xffff) < tnum)
+ if ((tdenm * (unsigned long) 0xffff) < tnum)
tquot = 0xffff;
else
tquot = tnum / tdenm;