Allow INLINE to be defined for debugging

From-SVN: r20594
This commit is contained in:
Michael Meissner 1998-06-19 15:37:29 +00:00 committed by Michael Meissner
parent 08e901b958
commit c041820530
2 changed files with 6 additions and 0 deletions

View 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)

View 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); }