[llvm] [VPlan] Add VPInstruction to unpack vector values to scalars. (PR #155670)
Florian Hahn via llvm-commits
llvm-commits at lists.llvm.org
Sat Oct 4 13:57:33 PDT 2025
================
@@ -1408,6 +1408,9 @@ void VPInstruction::print(raw_ostream &O, const Twine &Indent,
case VPInstruction::ResumeForEpilogue:
O << "resume-for-epilogue";
break;
+ case VPInstruction::UnpackVector:
+ O << "unpack-into-scalars";
----------------
fhahn wrote:
Yep, updated to `unpack`
https://github.com/llvm/llvm-project/pull/155670
More information about the llvm-commits
mailing list