efriedma marked an inline comment as done.
efriedma added inline comments.

================
Comment at: llvm/lib/Analysis/InstructionSimplify.cpp:4413
                                         unsigned MaxRecurse) {
-  if (isa<UndefValue>(Mask))
+  if (all_of(Mask, [](int Elem) { return Elem == -1; }))
     return UndefValue::get(RetTy);
----------------
xbolva00 wrote:
> maybe introduce new helper function to check if mask is "undef"?
I could introduce ShuffleVectorInst::MaskIsAllUndef and 
ShuffleVectorInst::MaskIsAllZero, I guess.  Not sure how helpful that actually 
is for a predicate that can be expressed on one line anyway.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D72467/new/

https://reviews.llvm.org/D72467



_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to