brintos

brintos / llvm-project-archived public Read only

0
0
Text · 135 B · ec83507 Raw
7 lines · c
1__attribute__((nodebug)) int stripped_function(int val) { return val * val; }2 3int main(void) {4  stripped_function(10);5  return 0;6}7