Hacker News new | ask | show | jobs
by gok 3460 days ago
Me too. Worse, at least for as recent of clang and GCC that I've tested, it doesn't warn when you do things that -ffinite-math-only makes tautological. So "if (x!=x)" happily compiles to nothing without warning when x is a float. (You get a warning if using integers)
1 comments

Same for actual calls, I suspected x!=x could disappear silently but didn't think isfinite(x) would be optimized out.