I tried to find an answer to this question but I couldn't find any.
One of the questions that I asked some time ago (my question) had undefined behavior so compiler optimization was actually causing the program to break.
But if there is no undefined behavior in you code, then is there ever a reason not to use compiler optimization? I understand that sometimes, for debugging purposes, one might not want optimized code (correct me if I am wrong please) but other than that, on production code, why not always use compiler optimization?
And also, is there ever a reason to use say -O instead of -O2 or -O3?
And also is
-O2but not at-O1. – Dietrich Epp Oct 22 '11 at 5:33