[Bug tree-optimization/67971] Failure to unify conditional argument selection with conditional result selection
pinskia at gcc dot gnu.org
gcc-bugzilla@gcc.gnu.org
Wed Sep 7 18:40:00 GMT 2016
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67971
--- Comment #3 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Note we should able to optimize this just to
int
f1 (int cond, double x, double y)
{
double z1, z2;
z2 = __builtin_cos (cond ? x : y);
return z2 == z2;
}
But that is 64700.
More information about the Gcc-bugs
mailing list