stack_int_array.c (93B)
1 int stack_int_array(void) { 2 volatile int values[1]; 3 values[0] = 0; 4 return values[0]; 5 }