[PATCH] D30710: [LV] Vectorize GEPs

Vassil Vassilev via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri Mar 24 15:02:54 PDT 2017


v.g.vassilev added a comment.

I suspect this introduced a regression (llvm bisect says it is between r298618 and r298625). This can be reproduced with the reduced example:

  int a, c, e, *b, d;
  void fn1() {
    int **f = 0;
    b = f + a;
    for (; e; e++, d += c)
      f[e] = b + d;
  }

https://bugs.llvm.org//show_bug.cgi?id=32414


Repository:
  rL LLVM

https://reviews.llvm.org/D30710





More information about the llvm-commits mailing list