From: Duncan Sands Date: Sun, 13 Feb 2011 18:11:05 +0000 (+0000) Subject: Remove pointless blank line. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=5380d280702423990e37d0dac05c76a35ad31baa;p=oota-llvm.git Remove pointless blank line. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@125463 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Analysis/InstructionSimplify.cpp b/lib/Analysis/InstructionSimplify.cpp index 7adabe54d24..a2f9862383f 100644 --- a/lib/Analysis/InstructionSimplify.cpp +++ b/lib/Analysis/InstructionSimplify.cpp @@ -1592,7 +1592,6 @@ static Value *SimplifyICmpInst(unsigned Predicate, Value *LHS, Value *RHS, BinaryOperator *LBO = dyn_cast(LHS); BinaryOperator *RBO = dyn_cast(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).