diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2009-08-03 07:10:54 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2009-08-03 07:10:54 +0000 |
commit | 840d386deb6736169085ec86ac9cb4d204072281 (patch) | |
tree | 3cecbeb7c3c4840a926a380c8160d449bafa7996 /LUFA/Common | |
parent | ab2ae13d81427ddddbd24e8ba6bdfbd2f05ff958 (diff) | |
download | lufa-840d386deb6736169085ec86ac9cb4d204072281.tar.gz lufa-840d386deb6736169085ec86ac9cb4d204072281.tar.bz2 lufa-840d386deb6736169085ec86ac9cb4d204072281.zip |
Cleanup and optimization of the internal serial retrieval routines.
Renamed ATTR_NOINLINE to ATTR_NO_INLINE to fit with the rest of the library function attribute names.
Diffstat (limited to 'LUFA/Common')
-rw-r--r-- | LUFA/Common/FunctionAttributes.h | 2 |
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.
|