Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

Try switching to -Ofast it produces different ASM


-Ofast is one of those dangerous flags that you should probably be careful with. It is “contagious” and it can mess up code elsewhere in the program, because it changes processor flags.

I would try a more specific flag like -ffinite-math-only.


finite-math-only is a footgun as well as it allows the compiler assume that NaNs do not exist. Which means all `isnan()` calls are just reduced to `false` so it’s difficult to program defensively. And if a NaN in fact occurs it’s naturally a one-way ticket to UB land.


If that’s a foot gun, then -Ofast is an autocannon.

I like to think that the flag should be renamed “-Ofuck-my-shit-up”.


As 1 of ∞ examples of UB land, I once had to debug JS objects being misinterpreted as numbers when https://duktape.org/ was miscompiled with a fast-math equivalent (references to objects were encoded as NaNs.)


IIRC the changing global flags "feature" was removed recently from GCC and now you have to separately ask for it.


Is that changing of global processor flags a x86 feature or does it hold for arm as well?


https://github.com/gcc-mirror/gcc/blob/master/libgcc/config/...

So, yes when targeting VFP math. NEON already always works in this mode though.




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: