aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Common/FunctionAttributes.h
diff options
context:
space:
mode:
Diffstat (limited to 'LUFA/Common/FunctionAttributes.h')
-rw-r--r--LUFA/Common/FunctionAttributes.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/LUFA/Common/FunctionAttributes.h b/LUFA/Common/FunctionAttributes.h
index 9efa440e5..9a293b619 100644
--- a/LUFA/Common/FunctionAttributes.h
+++ b/LUFA/Common/FunctionAttributes.h
@@ -87,7 +87,7 @@
/** Prevents the compiler from considering a specified function for inlining. When applied, the given
* function will not be inlined under any circumstances.
*/
- #define ATTR_NOINLINE __attribute__ ((noinline))
+ #define ATTR_NO_INLINE __attribute__ ((noinline))
/** Forces the compiler to inline the specified function. When applied, the given function will be
* inlined under all circumstances.