Quantcast
Channel: Why doesn't GCC optimize a*a*a*a*a*a to (a*a*a)*(a*a*a)? - Stack Overflow
Viewing all articles
Browse latest Browse all 13

Answer by sanjoyd for Why doesn't GCC optimize a*a*a*a*a*a to (a*a*a)*(a*a*a)?

$
0
0

Another similar case: most compilers won't optimize a + b + c + d to (a + b) + (c + d) (this is an optimization since the second expression can be pipelined better) and evaluate it as given (i.e. as (((a + b) + c) + d)). This too is because of corner cases:

float a = 1e35, b = 1e-5, c = -1e35, d = 1e-5;
printf("%e %e\n", a + b + c + d, (a + b) + (c + d));

This outputs 1.000000e-05 0.000000e+00


Viewing all articles
Browse latest Browse all 13

Trending Articles