http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50596
--- Comment #3 from vincenzo Innocente <vincenzo.innocente at cern dot ch>
2011-10-04 09:11:53 UTC ---
for (int i = 0; i < 1024; i++)
a[i] = b[i] < c[i] ? d[i] : e[i];
DOES vectorize with
-ftree-loop-if-convert-stores
even with
float * a; float * b; float * c; float * d; float * e;
