[PATCH] D90565: [VPlan] Make VPInstruction a VPDef

Gil Rapaport via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Sun Nov 15 03:05:59 PST 2020


gilr added inline comments.


================
Comment at: llvm/lib/Transforms/Vectorize/LoopVectorize.cpp:7811
+          auto *UV = Def->getUnderlyingValue();
+          if (UV->getType()->isVoidTy())
+            continue;
----------------
Is this still possible? Shouldn't e.g. WidenMemoryInstruction, InterleaveGroup, WidenCall recipes hold an empty VPDef for stores / functions returning void?


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D90565



More information about the llvm-commits mailing list