Remove __gnu89_inline.

Now that we use C99 almost everywhere, just use C99-style in the pmap
code. Since the pmap code is the only consumer of __gnu89_inline, remove
it from cdefs.h as well. Because the flag was only introduced 17 months
ago, I don't expect any problems.

Reviewed by:	alc
This commit is contained in:
Ed Schouten 2009-06-08 17:27:25 +00:00
parent bc29160df3
commit 032e3d1d19
4 changed files with 3 additions and 9 deletions

View File

@ -153,7 +153,7 @@ __FBSDID("$FreeBSD$");
#endif
#if !defined(DIAGNOSTIC)
#define PMAP_INLINE __gnu89_inline
#define PMAP_INLINE extern inline
#else
#define PMAP_INLINE
#endif

View File

@ -161,7 +161,7 @@ __FBSDID("$FreeBSD$");
#endif
#if !defined(DIAGNOSTIC)
#define PMAP_INLINE __gnu89_inline
#define PMAP_INLINE extern inline
#else
#define PMAP_INLINE
#endif

View File

@ -172,7 +172,7 @@ __FBSDID("$FreeBSD$");
#endif
#if !defined(PMAP_DIAGNOSTIC)
#define PMAP_INLINE __gnu89_inline
#define PMAP_INLINE extern inline
#else
#define PMAP_INLINE
#endif

View File

@ -234,12 +234,6 @@
#define __always_inline
#endif
#if __GNUC_PREREQ__(4, 2) /* actually 4.1.3 */
#define __gnu89_inline __attribute__((__gnu_inline__)) __inline
#else
#define __gnu89_inline
#endif
#if __GNUC_PREREQ__(3, 1)
#define __noinline __attribute__ ((__noinline__))
#else