[llvm] r256173 - Remove extra whitespace. NFC.

Chad Rosier via llvm-commits llvm-commits at lists.llvm.org
Mon Dec 21 10:08:06 PST 2015


Author: mcrosier
Date: Mon Dec 21 12:08:05 2015
New Revision: 256173

URL: http://llvm.org/viewvc/llvm-project?rev=256173&view=rev
Log:
Remove extra whitespace. NFC.

Modified:
    llvm/trunk/lib/Target/ARM/ARMISelLowering.cpp

Modified: llvm/trunk/lib/Target/ARM/ARMISelLowering.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/ARM/ARMISelLowering.cpp?rev=256173&r1=256172&r2=256173&view=diff
==============================================================================
--- llvm/trunk/lib/Target/ARM/ARMISelLowering.cpp (original)
+++ llvm/trunk/lib/Target/ARM/ARMISelLowering.cpp Mon Dec 21 12:08:05 2015
@@ -9068,7 +9068,7 @@ static SDValue PerformXORCombine(SDNode
 // their position in "to" (Rd).
 static SDValue ParseBFI(SDNode *N, APInt &ToMask, APInt &FromMask) {
   assert(N->getOpcode() == ARMISD::BFI);
-  
+
   SDValue From = N->getOperand(1);
   ToMask = ~cast<ConstantSDNode>(N->getOperand(2))->getAPIntValue();
   FromMask = APInt::getLowBitsSet(ToMask.getBitWidth(), ToMask.countPopulation());
@@ -9129,7 +9129,7 @@ static SDValue FindBFIToCombineWith(SDNo
     if (BitsProperlyConcatenate(NewToMask, ToMask) &&
         BitsProperlyConcatenate(NewFromMask, FromMask))
       return V;
-    
+
     // We've seen a write to some bits, so track it.
     CombinedToMask |= NewToMask;
     // Keep going...
@@ -9176,7 +9176,7 @@ static SDValue PerformBFICombine(SDNode
     SDValue From2 = ParseBFI(CombineBFI.getNode(), ToMask2, FromMask2);
     assert(From1 == From2);
     (void)From2;
-  
+
     // First, unlink CombineBFI.
     DCI.DAG.ReplaceAllUsesWith(CombineBFI, CombineBFI.getOperand(0));
     // Then create a new BFI, combining the two together.




More information about the llvm-commits mailing list