Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What optimizations does clang do in -O1? The piece of code I'm trying to debug fails as soon as apparently any optimization is performed. Is -O1 a collection of flags that I could try one by one?

share|improve this question
Where/how does it crash? – David Rönnqvist Jul 26 '12 at 10:59
I vote for undefined/unspecified behavior somewhere in your program: you get lucky when optimization is turned off. Look for memory allocations / initialization issues. – dasblinkenlight Jul 26 '12 at 10:59
That's exactly what I'm trying to narrow down, which is why it would be helpful if I could selectively switch on optimizations to narrow the problem further down. – angerman Jul 26 '12 at 11:04
Have you run the static analyzer against the code? – trojanfoe Jul 26 '12 at 11:07
Yep, didn't turn up anything. – angerman Jul 26 '12 at 11:21

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.