From 7d0fb3cccd2b43c459bdf08a69254e974c361169 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Fri, 1 Jan 2021 22:29:12 +0100 Subject: [PATCH] macros: add NOINLINE (__attribute__((noinline))) --- macros.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/macros.h b/macros.h index 4d63404c..d4621bd5 100644 --- a/macros.h +++ b/macros.h @@ -26,6 +26,12 @@ #define UNUSED #endif +#if HAS_ATTRIBUTE(noinline) + #define NOINLINE __attribute__((noinline)) +#else + #define NOINLINE +#endif + #if HAS_ATTRIBUTE(const) #define CONST __attribute__((__const__)) #else