[PATCH] D115111: [VPlan] Add InductionDescriptor to VPWidenIntOrFpInduction. (NFC)

Ayal Zaks via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Dec 9 03:21:08 PST 2021


Ayal accepted this revision.
Ayal added a comment.
This revision is now accepted and ready to land.

Thanks! Ship it, just a couple of typos to fix.



================
Comment at: llvm/include/llvm/Transforms/Vectorize/LoopVectorizationLegality.h:313
 
+  /// Returns a pointer to the induction descriptor, if \p Phi is an integer for
+  /// floating point induction.
----------------
[f]or


================
Comment at: llvm/lib/Transforms/Vectorize/VPlan.h:1067
+
+  /// Returns to induction descriptor for the recipe.
+  const InductionDescriptor &getInductionDescriptor() const { return IndDesc; }
----------------
to >> the


================
Comment at: llvm/lib/Transforms/Vectorize/VPlanTransforms.h:25
 class ScalarEvolution;
+class PHINode;
 
----------------
Lex order.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D115111/new/

https://reviews.llvm.org/D115111



More information about the llvm-commits mailing list