Allow INLINE to be defined for debugging
authorMichael Meissner <meissner@cygnus.com>
Fri, 19 Jun 1998 15:37:29 +0000 (15:37 +0000)
committerMichael Meissner <meissner@gcc.gnu.org>
Fri, 19 Jun 1998 15:37:29 +0000 (15:37 +0000)
From-SVN: r20594

gcc/ChangeLog
gcc/config/fp-bit.c

index cfa8f1ad4bdab7a657b42b52b833431ff9ac0e15..ee5700f5df5d6c02fc189efc2a45f1c0e889612d 100644 (file)
@@ -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)
index ca4e0c5ba28d63a2c4e3615c76384d8c3a195d37..296bc640c95aaa844ef28d7a9b2e9c569f98ce24 100644 (file)
@@ -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); }