[llvm] [VPlan] Introduce VPInstructionWithType, use instead of VPScalarCast(NFC) (PR #129706)
Florian Hahn via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 27 15:15:16 PDT 2025
================
@@ -1024,6 +1023,53 @@ class VPInstruction : public VPRecipeWithIRFlags,
StringRef getName() const { return Name; }
};
+/// A specialization of VPInstruction augmenting it with a dedicated result
+/// type, to be used when the opcode and operands of the VPInstruction don't
+/// directly determine the result type.
+class VPInstructionWithType : public VPInstruction {
----------------
fhahn wrote:
It would be nice if we could do something like https://github.com/llvm/llvm-project/commit/d6eb747d784aee6665036cea3c252d77bb94ce60, but unfortunately I've not yet been able to figure out how to make this not actually crash.
https://github.com/llvm/llvm-project/pull/129706
More information about the llvm-commits
mailing list