|
|
|
|
|
by Jasper_
2247 days ago
|
|
I doubt the compiler would optimize out multiplications like that, as floating point math is not necessarily associative. You'd have to pass -ffast-math to get the compiler to attempt to optimize that out. It looks like typical compiler output to me. |
|