Lines Matching refs:noinline
19 __attribute__((noinline)) void OOB() { int x[4]; x[four] = 0; USE(&x[0]); } in OOB()
20 __attribute__((noinline)) void FUNC1() { int x; USE(&x); OOB(); } in FUNC1()
21 __attribute__((noinline)) void FUNC2() { int x; USE(&x); FUNC1(); } in FUNC2()
22 __attribute__((noinline)) void FUNC3() { int x; USE(&x); FUNC2(); } in FUNC3()
23 __attribute__((noinline)) void FUNC4() { int x; USE(&x); FUNC3(); } in FUNC4()
24 __attribute__((noinline)) void FUNC5() { int x; USE(&x); FUNC4(); } in FUNC5()
25 __attribute__((noinline)) void FUNC6() { int x; USE(&x); FUNC5(); } in FUNC6()
26 __attribute__((noinline)) void FUNC7() { int x; USE(&x); FUNC6(); } in FUNC7()
27 __attribute__((noinline)) void FUNC8() { int x; USE(&x); FUNC7(); } in FUNC8()
28 __attribute__((noinline)) void FUNC9() { int x; USE(&x); FUNC8(); } in FUNC9()
29 __attribute__((noinline)) void FUNC10() { int x; USE(&x); FUNC9(); } in FUNC10()