From: Michael Brown Date: Sat, 13 Sep 2008 15:21:47 +0000 (+0100) Subject: [compiler] Add __always_inline macro X-Git-Tag: v0.9.6~118 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9b01a9fd9cb149a1cee0d16e59e050131aefdabf;p=thirdparty%2Fipxe.git [compiler] Add __always_inline macro --- 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. *