aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorMichael Meissner <meissner@cygnus.com>1998-06-19 15:37:29 +0000
committerMichael Meissner <meissner@gcc.gnu.org>1998-06-19 15:37:29 +0000
commitc0418205303e5154cc7211add0ea605abeb8c4df (patch)
treee5472cdcaaa104b574ae5b816f1be7c32fb1858a /gcc
parent08e901b958008d25055e8b3045909ecee2f53791 (diff)
downloadgcc-c0418205303e5154cc7211add0ea605abeb8c4df.zip
gcc-c0418205303e5154cc7211add0ea605abeb8c4df.tar.gz
gcc-c0418205303e5154cc7211add0ea605abeb8c4df.tar.bz2
Allow INLINE to be defined for debugging
From-SVN: r20594
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/config/fp-bit.c2
2 files changed, 6 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index cfa8f1a..ee5700f 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+Fri Jun 19 18:38:04 1998 Michael Meissner <meissner@cygnus.com>
+
+ * config/fp-bit.c (INLINE): Only define if not already defined.
+
1998-06-19 Manfred Hollstein <manfred@s-direktnet.de>
* Makefile.in (installdirs): Loop over directories in $(libsubdir)
diff --git a/gcc/config/fp-bit.c b/gcc/config/fp-bit.c
index ca4e0c5..296bc64 100644
--- a/gcc/config/fp-bit.c
+++ b/gcc/config/fp-bit.c
@@ -286,7 +286,9 @@ typedef unsigned int UDItype __attribute__ ((mode (DI)));
#endif
+#ifndef INLINE
#define INLINE __inline__
+#endif
/* Preserve the sticky-bit when shifting fractions to the right. */
#define LSHIFT(a) { a = (a & 1) | (a >> 1); }