From 5336930cdc53b943b58ccff1e1ad40acf404f723 Mon Sep 17 00:00:00 2001 From: meissner Date: Fri, 19 Jun 1998 15:37:29 +0000 Subject: [PATCH] Allow INLINE to be defined for debugging git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@20594 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/ChangeLog | 4 ++++ gcc/config/fp-bit.c | 2 ++ 2 files changed, 6 insertions(+) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index cfa8f1ad4bd..ee5700f5df5 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +Fri Jun 19 18:38:04 1998 Michael Meissner + + * config/fp-bit.c (INLINE): Only define if not already defined. + 1998-06-19 Manfred Hollstein * Makefile.in (installdirs): Loop over directories in $(libsubdir) diff --git a/gcc/config/fp-bit.c b/gcc/config/fp-bit.c index ca4e0c5ba28..296bc640c95 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); } -- 2.11.4.GIT