[PATCH] D103247: [SLP]Allow to reorder nodes with >2 scalar values.
    Alexey Bataev via Phabricator via llvm-commits 
    llvm-commits at lists.llvm.org
       
    Thu May 27 09:02:15 PDT 2021
    
    
  
ABataev added inline comments.
================
Comment at: llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp:6915
+          SmallVector<Value *, 4> ReorderedOps(Ops.size());
+          transform(NewOrder, ReorderedOps.begin(),
+                    [Ops](const unsigned Idx) { return Ops[Idx]; });
----------------
vdmitrie wrote:
> missed llvm:: namespace
It is not required, I'll remove it from other places.
Repository:
  rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D103247/new/
https://reviews.llvm.org/D103247
    
    
More information about the llvm-commits
mailing list