Elena Demikhovsky 376a18bd92 [Loop Vectorizer] Handling loops FP induction variables.
Allowed loop vectorization with secondary FP IVs. Like this:
float *A;
float x = init;
for (int i=0; i < N; ++i) {
  A[i] = x;
  x -= fp_inc;
}

The auto-vectorization is possible when the induction binary operator is "fast" or the function has "unsafe" attribute.

Differential Revision: https://reviews.llvm.org/D21330

llvm-svn: 276554
2016-07-24 07:24:54 +00:00
..
2016-06-16 20:47:57 +00:00
2016-07-21 23:22:10 +00:00
2016-07-22 00:41:02 +00:00
2016-07-12 22:37:48 +00:00
2016-07-19 23:54:23 +00:00
2016-06-29 20:37:43 +00:00
2016-07-20 20:17:13 +00:00
2016-07-19 17:52:41 +00:00
2016-07-06 23:48:41 +00:00