Lines Matching refs:noinline
31 __attribute__((noinline)) void OOB() { int x[4]; x[four] = 0; USE(&x[0]); } in OOB()
32 __attribute__((noinline)) void FUNC1() { int x; USE(&x); OOB(); } in FUNC1()
33 __attribute__((noinline)) void FUNC2() { int x; USE(&x); FUNC1(); } in FUNC2()
34 __attribute__((noinline)) void FUNC3() { int x; USE(&x); FUNC2(); } in FUNC3()
35 __attribute__((noinline)) void FUNC4() { int x; USE(&x); FUNC3(); } in FUNC4()
36 __attribute__((noinline)) void FUNC5() { int x; USE(&x); FUNC4(); } in FUNC5()
37 __attribute__((noinline)) void FUNC6() { int x; USE(&x); FUNC5(); } in FUNC6()
38 __attribute__((noinline)) void FUNC7() { int x; USE(&x); FUNC6(); } in FUNC7()
39 __attribute__((noinline)) void FUNC8() { int x; USE(&x); FUNC7(); } in FUNC8()
40 __attribute__((noinline)) void FUNC9() { int x; USE(&x); FUNC8(); } in FUNC9()
41 __attribute__((noinline)) void FUNC10() { int x; USE(&x); FUNC9(); } in FUNC10()