diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | misc/sys/cdefs.h | 7 |
2 files changed, 11 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2007-10-03 Jakub Jelinek + + * misc/sys/cdefs.h (__extern_always_inline): For GCC 4.3+ + add __artificial__ attribute. + 2007-10-02 Ulrich Drepper <drepper@redhat.com> * string/strcoll_l.c (STRCOLL): Correct handling of switching from diff --git a/misc/sys/cdefs.h b/misc/sys/cdefs.h index 4650d5f..56b7f95 100644 --- a/misc/sys/cdefs.h +++ b/misc/sys/cdefs.h @@ -294,8 +294,13 @@ #if !defined __cplusplus || __GNUC_PREREQ (4,3) # if defined __GNUC_STDC_INLINE__ || defined __cplusplus # define __extern_inline extern __inline __attribute__ ((__gnu_inline__)) -# define __extern_always_inline \ +# if __GNUC_PREREQ (4,3) +# define __extern_always_inline \ + extern __always_inline __attribute__ ((__gnu_inline__, __artificial__)) +# else +# define __extern_always_inline \ extern __always_inline __attribute__ ((__gnu_inline__)) +# endif # else # define __extern_inline extern __inline # define __extern_always_inline extern __always_inline |