From 9b01a9fd9cb149a1cee0d16e59e050131aefdabf Mon Sep 17 00:00:00 2001 From: Michael Brown Date: Sat, 13 Sep 2008 16:21:47 +0100 Subject: [PATCH] [compiler] Add __always_inline macro --- src/include/compiler.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/include/compiler.h b/src/include/compiler.h index 8ab7b8ae..a6532dad 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. * -- 2.17.1