OSDN Git Service

Strip trailing whitespace. NFCI.
authorSimon Pilgrim <llvm-dev@redking.me.uk>
Sun, 19 Jun 2016 20:22:43 +0000 (20:22 +0000)
committerSimon Pilgrim <llvm-dev@redking.me.uk>
Sun, 19 Jun 2016 20:22:43 +0000 (20:22 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@273124 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/X86/X86ISelLowering.cpp

index 88b4535..4b4d2fa 100644 (file)
@@ -30281,10 +30281,10 @@ static SDValue detectSADPattern(SDNode *N, SelectionDAG &DAG,
   // If the reduction vector is at least as wide as the psadbw result, just
   // bitcast. If it's narrower, truncate - the high i32 of each i64 is zero
   // anyway.
-  MVT ResVT = MVT::getVectorVT(MVT::i32, RegSize / 32);  
+  MVT ResVT = MVT::getVectorVT(MVT::i32, RegSize / 32);
   if (VT.getSizeInBits() >= ResVT.getSizeInBits())
     Sad = DAG.getNode(ISD::BITCAST, DL, ResVT, Sad);
-  else 
+  else
     Sad = DAG.getNode(ISD::TRUNCATE, DL, VT, Sad);
 
   if (VT.getSizeInBits() > ResVT.getSizeInBits()) {