From c1d118e009cea1830270141edfb8cff7dc27a8ed Mon Sep 17 00:00:00 2001 From: Martin Mares Date: Tue, 26 Sep 2006 16:00:16 +0200 Subject: [PATCH] Define NO_INLINE, which can be helpful when profiling. --- lib/lib.h | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/lib.h b/lib/lib.h index 5d0610e3..ec9d58b9 100644 --- a/lib/lib.h +++ b/lib/lib.h @@ -67,6 +67,7 @@ #if __GNUC__ >= 4 || __GNUC__ == 3 && __GNUC_MINOR__ >= 3 #define ALWAYS_INLINE inline __attribute__((always_inline)) +#define NO_INLINE __attribute__((noinline)) #else #define ALWAYS_INLINE inline #endif -- 2.39.2