[PATCH] D107286: [LV] Widen ExtractValue instructions instead of scalarizing.

Dave Green via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Aug 3 01:00:32 PDT 2021


dmgreen added inline comments.


================
Comment at: llvm/lib/Transforms/Vectorize/LoopVectorize.cpp:4963
+
+    Type *DestTy =
+        VF.isScalar() ? EVI->getType() : VectorType::get(EVI->getType(), VF);
----------------
This doesn't appear to be used.


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D107286



More information about the llvm-commits mailing list