From: Chris Lattner Date: Sun, 27 Aug 2006 13:16:05 +0000 (+0000) Subject: add directive to disable inlining X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=6f3241dbbf6926a1ad1d0e2f1e50e6228a55b258;p=oota-llvm.git add directive to disable inlining git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29912 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Support/Compiler.h b/include/llvm/Support/Compiler.h index 046033fb9e4..06be685f971 100644 --- a/include/llvm/Support/Compiler.h +++ b/include/llvm/Support/Compiler.h @@ -37,4 +37,12 @@ #define TEMPLATE_INSTANTIATION(X) #endif +// DISABLE_INLINE - On compilers where we have a directive to do so, mark a +// method "not for inlining". +#if (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)) +#define DISABLE_INLINE __attribute__((noinline)) +#else +#define DISABLE_INLINE +#endif + #endif