[PATCH] D76988: [VPlan] Use on VPWidenRecipe per original IR instruction. (NFC).

Gil Rapaport via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Sat Mar 28 10:44:46 PDT 2020


gilr added inline comments.


================
Comment at: llvm/lib/Transforms/Vectorize/VPlan.cpp:717-718
                           VPSlotTracker &SlotTracker) const {
   O << " +\n" << Indent << "\"WIDEN\\l\"";
-  for (auto &Instr : make_range(Begin, End))
-    O << " +\n" << Indent << "\"  " << VPlanIngredient(&Instr) << "\\l\"";
+  O << " +\n" << Indent << "\"  " << VPlanIngredient(Ingredient) << "\\l\"";
 }
----------------
No need for the line break anymore - can be a single row as other simple recipes.


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D76988





More information about the llvm-commits mailing list