From: Ulrich Drepper Date: Wed, 3 Oct 2007 18:13:55 +0000 (+0000) Subject: 2007-10-03 Jakub Jelinek X-Git-Tag: cvs/fedora-glibc-20071003T1908~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ee868c89aee79e85af2e6d3e2c1289b78f6b3078;p=thirdparty%2Fglibc.git 2007-10-03 Jakub Jelinek * misc/sys/cdefs.h (__extern_always_inline): For GCC 4.3+ add __artificial__ attribute. --- diff --git a/ChangeLog b/ChangeLog index 50d30f12e09..f25bf7ea0b6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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 * string/strcoll_l.c (STRCOLL): Correct handling of switching from diff --git a/misc/sys/cdefs.h b/misc/sys/cdefs.h index 4650d5f74e0..56b7f95b1c3 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