bar(int a)1*99507c2cSAlex Crichtonint bar(int a) { 2*99507c2cSAlex Crichton int b[50]; 3*99507c2cSAlex Crichton b[0] = a; 4*99507c2cSAlex Crichton b[29] = a; 5*99507c2cSAlex Crichton return a; 6*99507c2cSAlex Crichton } 7*99507c2cSAlex Crichton 8*99507c2cSAlex Crichton int baz(int a); 9*99507c2cSAlex Crichton foo()10*99507c2cSAlex Crichton__attribute__((export_name("foo"))) int foo() { return baz(10); } 11*99507c2cSAlex Crichton baz(int a)12*99507c2cSAlex Crichton__attribute__((noinline)) int baz(int a) { return a + 5; } 13