Non-Confidential | ![]() | ARM DUI0375E | ||
| ||||
Home > Compiler-specific Features > __attribute__((noinline)) function attribute |
This function attribute suppresses the inlining of a function at the call points of the function.
__declspec
equivalent __declspec(noinline)
.int fn(void) __attribute__((noinline)); int fn(void) { return 42; }