Lines Matching refs:noinline
8 [[gnu::noinline]] void noinline_fn(void) { } in noinline_fn()
11 [[clang::noinline]] bar(); in foo()
12 [[clang::noinline(0)]] bar(); // expected-error {{'noinline' attribute takes no arguments}} in foo()
14 …[[clang::noinline]] x = 0; // expected-warning {{'noinline' attribute is ignored because there exi… in foo()
15 …[[clang::noinline]] { asm("nop"); } // expected-warning {{'noinline' attribute is ignored because … in foo()
16 …[[clang::noinline]] label: x = 1; // expected-warning {{'noinline' attribute only applies to funct… in foo()
19 …[[clang::noinline]] always_inline_fn(); // expected-warning {{statement attribute 'noinline' has h… in foo()
20 …[[clang::noinline]] flatten_fn(); // expected-warning {{statement attribute 'noinline' has higher … in foo()
21 [[clang::noinline]] noinline_fn(); in foo()
23 …[[gnu::noinline]] bar(); // expected-warning {{attribute is ignored on this statement as it only a… in foo()
24 …__attribute__((noinline)) bar(); // expected-warning {{attribute is ignored on this statement as i… in foo()
27 [[clang::noinline]] static int i = bar(); // expected-warning {{'noinline' attribute only applies t…