[PATCH] D46445: [SCEVAffinator] Fix handling of pwaff complexity limit.

Dávid Bolvanský via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri May 4 12:21:29 PDT 2018


xbolva00 added inline comments.


================
Comment at: lib/Support/SCEVAffinator.cpp:385
   for (int i = 1, e = Expr->getNumOperands(); i < e; ++i) {
     Prod = combine(Prod, visit(Expr->getOperand(i)), isl_pw_aff_mul);
+    if (isTooComplex(Prod)) {
----------------
Move common code to separate function? :)


Repository:
  rPLO Polly

https://reviews.llvm.org/D46445





More information about the llvm-commits mailing list