Remove implicit inline attribute from ALWAYS_INLINE target option

May cause issues when multiple non-standard attributes are used.
Standard attributes must come before all non-standard attributes.
This commit is contained in:
Madeline Busig 2024-07-27 18:17:42 -06:00
parent 4778b477ec
commit 45a1690032

View File

@ -5,7 +5,7 @@
#endif #endif
#define NOINLINE [[gnu::noinline]] #define NOINLINE [[gnu::noinline]]
#define ALWAYS_INLINE [[gnu::always_inline]] inline #define ALWAYS_INLINE [[gnu::always_inline]]
#ifdef __arm__ #ifdef __arm__