add __noinline

Submitted by:	imp
Reviewed by:	kan (long ago)
MFC after:	3 weeks
This commit is contained in:
Sam Leffler 2008-03-25 21:30:01 +00:00
parent fb27dd1db3
commit 85a8a1ddff

View File

@ -241,6 +241,12 @@
#define __gnu89_inline
#endif
#if __GNUC_PREREQ__(3, 1)
#define __noinline __attribute__ ((__noinline__))
#else
#define __noinline
#endif
#if __GNUC_PREREQ__(3, 3)
#define __nonnull(x) __attribute__((__nonnull__(x)))
#else