summaryrefslogtreecommitdiffstats
path: root/src/include/compiler.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/compiler.h')
-rw-r--r--src/include/compiler.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/include/compiler.h b/src/include/compiler.h
index 8ab7b8ae3..a6532dadb 100644
--- a/src/include/compiler.h
+++ b/src/include/compiler.h
@@ -325,6 +325,9 @@ extern void dbg_hex_dump_da ( unsigned long dispaddr,
/** Declare a data structure to be aligned with 16-byte alignment */
#define __aligned __attribute__ (( aligned ( 16 ) ))
+/** Declare a function to be always inline */
+#define __always_inline __attribute__ (( always_inline ))
+
/**
* Shared data.
*