Index: src/globals.h |
=================================================================== |
--- src/globals.h (revision 5182) |
+++ src/globals.h (working copy) |
@@ -643,11 +643,14 @@ |
#if defined(__GNUC__) && !defined(DEBUG) |
#if (__GNUC__ >= 4) |
#define INLINE(header) inline header __attribute__((always_inline)) |
+#define NO_INLINE(header) header __attribute__((noinline)) |
#else |
#define INLINE(header) inline __attribute__((always_inline)) header |
+#define NO_INLINE(header) __attribute__((noinline)) header |
#endif |
#else |
#define INLINE(header) inline header |
+#define NO_INLINE(header) header |
#endif |
// Feature flags bit positions. They are mostly based on the CPUID spec. |