1__attribute__((nodebug)) int stripped_function(int val) { return val * val; }2 3int main(void) {4 stripped_function(10);5 return 0;6}7