mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-03-03 04:03:59 -04:00
AP_Common: moved NOINLINE define to AP_Common.h
This commit is contained in:
parent
78f02634d0
commit
a1a3212131
@ -44,6 +44,9 @@
|
||||
// this can be used to optimize individual functions
|
||||
#define OPTIMIZE(level) __attribute__((optimize(level)))
|
||||
|
||||
// sometimes we need to prevent inlining to prevent large stack usage
|
||||
#define NOINLINE __attribute__((noinline))
|
||||
|
||||
// Make some dire warnings into errors
|
||||
//
|
||||
// Some warnings indicate questionable code; rather than let
|
||||
|
Loading…
Reference in New Issue
Block a user