merge from gcc
This commit is contained in:
parent
2213ad419b
commit
97e7286372
|
@ -1,3 +1,7 @@
|
||||||
|
2007-03-06 Jan Hubicka <jh@suse.cz>
|
||||||
|
|
||||||
|
* ansidecl.h (ATTRIBUTE_COLD, ATTRIBUTE_HOT): New.
|
||||||
|
|
||||||
2007-02-21 Nick Clifton <nickc@redhat.com>
|
2007-02-21 Nick Clifton <nickc@redhat.com>
|
||||||
|
|
||||||
* bfdlink.h (struct bfd_link_callbacks): Add
|
* bfdlink.h (struct bfd_link_callbacks): Add
|
||||||
|
|
|
@ -367,6 +367,22 @@ So instead we use the macro below and test it against specific values. */
|
||||||
# define ATTRIBUTE_PACKED __attribute__ ((packed))
|
# define ATTRIBUTE_PACKED __attribute__ ((packed))
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/* Attribute `hot' and `cold' was valid as of gcc 4.3. */
|
||||||
|
#ifndef ATTRIBUTE_COLD
|
||||||
|
# if (GCC_VERSION >= 4003)
|
||||||
|
# define ATTRIBUTE_COLD __attribute__ ((__cold__))
|
||||||
|
# else
|
||||||
|
# define ATTRIBUTE_COLD
|
||||||
|
# endif /* GNUC >= 4.3 */
|
||||||
|
#endif /* ATTRIBUTE_COLD */
|
||||||
|
#ifndef ATTRIBUTE_HOT
|
||||||
|
# if (GCC_VERSION >= 4003)
|
||||||
|
# define ATTRIBUTE_HOT __attribute__ ((__hot__))
|
||||||
|
# else
|
||||||
|
# define ATTRIBUTE_HOT
|
||||||
|
# endif /* GNUC >= 4.3 */
|
||||||
|
#endif /* ATTRIBUTE_HOT */
|
||||||
|
|
||||||
/* We use __extension__ in some places to suppress -pedantic warnings
|
/* We use __extension__ in some places to suppress -pedantic warnings
|
||||||
about GCC extensions. This feature didn't work properly before
|
about GCC extensions. This feature didn't work properly before
|
||||||
gcc 2.8. */
|
gcc 2.8. */
|
||||||
|
|
Loading…
Reference in New Issue