I've been digging through the gcc-4.3 source, looking for where the compiler swaps printf("%s\n",str); with puts(str);
but the source is huge and I have no idea where or how to find the code responsible for this.
I would happily patch this, provided I can get some direction on where I can find the optimization code
I've been digging through the gcc-4.3 source, looking for where the compiler swaps
printf("%s\n",str);
with
puts(str);
but the source is huge and I have no idea where or how to find the code responsible for this.
I would happily patch this, provided I can get some direction on where I can find the optimization code