mirror of git://sourceware.org/git/glibc.git
* misc/sys/cdefs.h (__extern_always_inline): Add __artificial__
attribute also for non-C99 inline semantics variant. 2009-03-02 Richard Guenther <rguenther@suse.de> * misc/sys/cdefs.h (__extern_always_inline): Add __artificial__ attribute also for non-C99 inline semantics variant.
This commit is contained in:
parent
134a97667f
commit
6219e3cc0e
|
|
@ -1,3 +1,8 @@
|
||||||
|
2009-03-02 Richard Guenther <rguenther@suse.de>
|
||||||
|
|
||||||
|
* misc/sys/cdefs.h (__extern_always_inline): Add __artificial__
|
||||||
|
attribute also for non-C99 inline semantics variant.
|
||||||
|
|
||||||
2009-02-12 Carlos Eduardo Seo <cseo@linux.vnet.ibm.com>
|
2009-02-12 Carlos Eduardo Seo <cseo@linux.vnet.ibm.com>
|
||||||
|
|
||||||
* sysdeps/powerpc/powerpc32/power7/fpu/Implies: New file.
|
* sysdeps/powerpc/powerpc32/power7/fpu/Implies: New file.
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
/* Copyright (C) 1992-2001, 2002, 2004, 2005, 2006, 2007
|
/* Copyright (C) 1992-2001, 2002, 2004, 2005, 2006, 2007, 2009
|
||||||
Free Software Foundation, Inc.
|
Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
|
|
||||||
|
|
@ -303,8 +303,13 @@
|
||||||
# endif
|
# endif
|
||||||
# else
|
# else
|
||||||
# define __extern_inline extern __inline
|
# define __extern_inline extern __inline
|
||||||
|
# if __GNUC_PREREQ (4,3)
|
||||||
|
# define __extern_always_inline \
|
||||||
|
extern __always_inline __attribute__ ((__artificial__))
|
||||||
|
# else
|
||||||
# define __extern_always_inline extern __always_inline
|
# define __extern_always_inline extern __always_inline
|
||||||
# endif
|
# endif
|
||||||
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* GCC 4.3 and above allow passing all anonymous arguments of an
|
/* GCC 4.3 and above allow passing all anonymous arguments of an
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue