[llvm] 98001a6 - [X86] Fix tabs/spaces typo. NFC.
    Simon Pilgrim via llvm-commits 
    llvm-commits at lists.llvm.org
       
    Sun Apr 28 08:59:22 PDT 2024
    
    
  
Author: Simon Pilgrim
Date: 2024-04-28T16:59:02+01:00
New Revision: 98001a662c28c7e7d36b13be3073d41dbcd961b0
URL: https://github.com/llvm/llvm-project/commit/98001a662c28c7e7d36b13be3073d41dbcd961b0
DIFF: https://github.com/llvm/llvm-project/commit/98001a662c28c7e7d36b13be3073d41dbcd961b0.diff
LOG: [X86] Fix tabs/spaces typo. NFC.
Added: 
    
Modified: 
    llvm/lib/Target/X86/X86ISelLowering.cpp
Removed: 
    
################################################################################
diff  --git a/llvm/lib/Target/X86/X86ISelLowering.cpp b/llvm/lib/Target/X86/X86ISelLowering.cpp
index f0cec6224e84e4..82d3859225fdf7 100644
--- a/llvm/lib/Target/X86/X86ISelLowering.cpp
+++ b/llvm/lib/Target/X86/X86ISelLowering.cpp
@@ -45272,7 +45272,7 @@ static SDValue commuteSelect(SDNode *N, SelectionDAG &DAG,
       ISD::getSetCCInverse(cast<CondCodeSDNode>(Cond.getOperand(2))->get(),
                            Cond.getOperand(0).getValueType());
   Cond = DAG.getSetCC(SDLoc(Cond), Cond.getValueType(), Cond.getOperand(0),
-		                        Cond.getOperand(1), NewCC);
+                      Cond.getOperand(1), NewCC);
   return DAG.getSelect(DL, LHS.getValueType(), Cond, RHS, LHS);
 }
 
        
    
    
More information about the llvm-commits
mailing list