Turn off function instrumentation for inline functions; thanks Greg.

This commit is contained in:
px4dev 2012-09-16 16:42:37 -07:00
parent 2b82c733a9
commit 01e52526cf

View File

@ -97,7 +97,7 @@
* indicates that the function should never be inlined.
*/
# define inline_function __attribute__ ((always_inline))
# define inline_function __attribute__ ((always_inline,no_instrument_function))
# define noinline_function __attribute__ ((noinline))
/* GCC has does not use storage classes to qualify addressing */