more space; NFC
authorSanjay Patel <spatel@rotateright.com>
Fri, 25 Sep 2015 20:12:43 +0000 (20:12 +0000)
committerSanjay Patel <spatel@rotateright.com>
Fri, 25 Sep 2015 20:12:43 +0000 (20:12 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@248609 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/ValueTracking.cpp

index 417122be0d853d96540afbac9b474c8cdfea7ee4..736077dc47760a8ffd6fbcdfaa6afe48bdaa8ec9 100644 (file)
@@ -1540,6 +1540,7 @@ void computeKnownBits(Value *V, APInt &KnownZero, APInt &KnownOne,
 
   if (Operator *I = dyn_cast<Operator>(V))
     computeKnownBitsFromOperator(I, KnownZero, KnownOne, DL, Depth, Q);
+
   // computeKnownBitsFromAssume and computeKnownBitsFromDominatingCondition
   // strictly refines KnownZero and KnownOne. Therefore, we run them after
   // computeKnownBitsFromOperator.