Remove pointless blank line.
authorDuncan Sands <baldrick@free.fr>
Sun, 13 Feb 2011 18:11:05 +0000 (18:11 +0000)
committerDuncan Sands <baldrick@free.fr>
Sun, 13 Feb 2011 18:11:05 +0000 (18:11 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@125463 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/InstructionSimplify.cpp

index 7adabe54d24ae2c1d83aedbc1a1e4c49bc637ca1..a2f9862383fd813ddcd1b283270cdb2228caf7ae 100644 (file)
@@ -1592,7 +1592,6 @@ static Value *SimplifyICmpInst(unsigned Predicate, Value *LHS, Value *RHS,
   BinaryOperator *LBO = dyn_cast<BinaryOperator>(LHS);
   BinaryOperator *RBO = dyn_cast<BinaryOperator>(RHS);
   if (MaxRecurse && (LBO || RBO)) {
-
     // Analyze the case when either LHS or RHS is an add instruction.
     Value *A = 0, *B = 0, *C = 0, *D = 0;
     // LHS = A + B (or A and B are null); RHS = C + D (or C and D are null).