[llvm] [VPlan] Use VPInstruction for uniform binops. (PR #141429)
    Florian Hahn via llvm-commits 
    llvm-commits at lists.llvm.org
       
    Tue Jun 10 07:12:51 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 ");
----------------
fhahn wrote:
Done, thanks
https://github.com/llvm/llvm-project/pull/141429
    
    
More information about the llvm-commits
mailing list