[llvm] [VPlan] Use VPInstruction for uniform binops. (PR #141429)
via llvm-commits
llvm-commits at lists.llvm.org
Wed Jun 4 04:27:23 PDT 2025
================
@@ -965,7 +966,7 @@ void VPInstruction::dump() const {
void VPInstruction::print(raw_ostream &O, const Twine &Indent,
VPSlotTracker &SlotTracker) const {
- O << Indent << "EMIT ";
+ O << Indent << (isSingleScalar() ? "SINGLE-SCALAR " : "EMIT ");
----------------
ayalz wrote:
Needs rebasing to emit EMIT-SCALAR.
https://github.com/llvm/llvm-project/pull/141429
More information about the llvm-commits
mailing list