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