[llvm] [LV][NFC] Refactor code for extracting first active element (PR #131118)

Luke Lau via llvm-commits llvm-commits at lists.llvm.org
Thu Mar 13 03:06:32 PDT 2025


================
@@ -50,6 +50,12 @@ Type *VPTypeAnalysis::inferScalarTypeForRecipe(const VPInstruction *R) {
     return SetResultTyFromOp();
 
   switch (Opcode) {
+  case Instruction::ExtractElement: {
+    Type *ResTy = inferScalarType(R->getOperand(0));
+    VPValue *OtherV = R->getOperand(1);
+    CachedTypes[OtherV] = ResTy;
----------------
lukel97 wrote:

Can the index type not be different from the result element type? Does it still work if we just remove the CachedTypes[OtherV] bit

https://github.com/llvm/llvm-project/pull/131118


More information about the llvm-commits mailing list