vote up 2 vote down star
1

I'm using 4.1.2. Does anyone have any ideas of the best places in my code to look? Experience with common causes? There are some ugly pointer casts (ie, d = (double) (* (float *) p), where p is pointer-to-int) that I'm working on eliminating, but no luck yet.
For what it's worth, -O0 is giving the correct answer. Thanks for any help.

flag
2  
could you provide a minimum (non) working example ? – Gyom Jul 2 at 2:44
Are you compiling with -Wall and -Wextra? – Adam Rosenfield Jul 2 at 2:50
Sorry, I'm working on it. Heavy going. – Alex Jul 2 at 2:51
delta.tigris.org is an excellent tool for automated minimization of a test case. – ephemient Jul 2 at 18:27

2 Answers

vote up 3 vote down

Thanks everyone, -fno-strict-aliasing (suggested by several) solved my problem. Thanks for all your help.
Lesson learned: Always compile with warning flags.

link|flag
Stack Overflow is not a forum. Answers may be reordered for many reasons, such as votes and edits, and thus should not be used to reply to other answers. Please leave comments or edit the question instead. Also, if your issue has been resolved due to an answer, please mark it as accepted (click the green check mark under the vote counter). Don't forget to vote up helpful responses! – ephemient Jul 2 at 18:26
vote up 7 vote down

I'd check for strict aliasing issues, as demonstrated here: http://www.cellperformance.com/mike_acton/2006/06/understanding_strict_aliasing.html

Without knowing exactly what your code does, the mention of "ugly pointer casts" make me suspect aliasing problems.

It would be helpful for you, and make it easier for us to answer, if you provided some code that demonstrated the issue.

link|flag
The post stackoverflow.com/questions/83962/… shows a similar problen – an0nym0usc0ward Jul 2 at 2:54
Compiling with Wall (suggested above) did it. The bad line is *(p1 + dcb.ntrc_hdr + r*NTW + t) = * (int *) &ftmp; – Alex Jul 2 at 2:55

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.