|
|
|
|
|
by bokglobule
2943 days ago
|
|
Amen. IMO the root of all evil is compiler "optimization" of code. If you really, really need the wee bit of extra performance through optimization, hire an expert at ass'y language and optimize the bit that matters. Rarely is this the case, especially with business apps. I've seen my fair share of bugs from the compiler incorrectly hoisting variables from loops, mis-using registers, etc. I prefer to turn off compiler optimization as one of the first steps in a new project, but that's me. |
|
If execution efficiency is not a concern and you're using C, then you're most likely using the wrong language. Especially for "business apps".