emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

INLINE is disabled


From: Dan Nicolaescu
Subject: INLINE is disabled
Date: Sat, 20 Nov 2010 03:44:52 -0500
User-agent: Gnus/5.11 (Gnus v5.11) Emacs/22.1 (gnu/linux)

>From configure.in:

/* If using GNU, then support inline function declarations.  */
/* Don't try to switch on inline handling as detected by AC_C_INLINE
   generally, because even if non-gcc compilers accept `inline', they
   may reject `extern inline'.  */
#if defined (__GNUC__) && defined (OPTIMIZE)
#define INLINE __inline__
#else
#define INLINE
#endif

OPTIMIZE is never defined, so we always use #else...

Should we just remove  "&& defined (OPTIMIZE)"? 
On the 23 branch too?



reply via email to

[Prev in Thread] Current Thread [Next in Thread]