Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 20 Feb 2008 19:40:02 GMT
From:      Sam Leffler <sam@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 135831 for review
Message-ID:  <200802201940.m1KJe29G086967@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=135831

Change 135831 by sam@sam_ebb on 2008/02/20 19:39:30

	add __noinline
	Submitted by:	bsdimp

Affected files ...

.. //depot/projects/vap/sys/sys/cdefs.h#7 edit

Differences ...

==== //depot/projects/vap/sys/sys/cdefs.h#7 (text+ko) ====

@@ -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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200802201940.m1KJe29G086967>