Lab3 Cont. Removing fno-builtin
- jadach1
- Sep 21, 2018
- 1 min read
Our compilation will now look like this
gcc -g -o0 -o $output
Comparing this to the original output we can see that the function call is now using <puts@plt> instead of <printf@plt>
I believe that puts is able to reference the buffer much quicker than printf
Comments