[PATCH] D120481: [AArch64] Try to re-use extended operand for SETCC with v16i8 operands.
    Florian Hahn via Phabricator via llvm-commits 
    llvm-commits at lists.llvm.org
       
    Tue Mar  8 03:39:59 PST 2022
    
    
  
fhahn added inline comments.
================
Comment at: llvm/lib/Target/AArch64/AArch64ISelLowering.cpp:17062
+
+  if (any_of(Op->uses(), [](const SDNode *N) {
+        return N->getOpcode() != ISD::VSELECT ||
----------------
dmgreen wrote:
> Do you have a test for multiple uses?
I added one in 3836003e87ee, thanks!
================
Comment at: llvm/lib/Target/AArch64/AArch64ISelLowering.cpp:18741
     return;
-
   case ISD::CTPOP:
----------------
dmgreen wrote:
> Whitespace
Removed, thanks!
Repository:
  rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D120481/new/
https://reviews.llvm.org/D120481
    
    
More information about the llvm-commits
mailing list