Delete trailing whitespace
authorSanjoy Das <sanjoy@playingwithpointers.com>
Thu, 31 Mar 2016 05:14:29 +0000 (05:14 +0000)
committerSanjoy Das <sanjoy@playingwithpointers.com>
Thu, 31 Mar 2016 05:14:29 +0000 (05:14 +0000)
llvm-svn: 264995

llvm/lib/Analysis/ValueTracking.cpp

index 79529e5..e464ae7 100644 (file)
@@ -3549,7 +3549,7 @@ static SelectPatternResult matchSelectPattern(CmpInst::Predicate Pred,
         return {(CmpLHS == FalseVal) ? SPF_ABS : SPF_NABS, SPNB_NA, false};
       }
     }
-    
+
     // Y >s C ? ~Y : ~C == ~Y <s ~C ? ~Y : ~C = SMIN(~Y, ~C)
     if (const auto *C2 = dyn_cast<ConstantInt>(FalseVal)) {
       if (C1->getType() == C2->getType() && ~C1->getValue() == C2->getValue() &&