diff options
author | Duncan Sands <baldrick@free.fr> | 2011-02-13 18:11:05 +0000 |
---|---|---|
committer | Duncan Sands <baldrick@free.fr> | 2011-02-13 18:11:05 +0000 |
commit | b86070933ff8f52a4770fca5976feea765b169ef (patch) | |
tree | dc25d72ee3bd3f9166b46a950ed87c7735fec215 /llvm/lib/Analysis/InstructionSimplify.cpp | |
parent | d114ab331c111937844c313e1ab74eab88bb2081 (diff) | |
download | bcm5719-llvm-b86070933ff8f52a4770fca5976feea765b169ef.tar.gz bcm5719-llvm-b86070933ff8f52a4770fca5976feea765b169ef.zip |
Remove pointless blank line.
llvm-svn: 125463
Diffstat (limited to 'llvm/lib/Analysis/InstructionSimplify.cpp')
-rw-r--r-- | llvm/lib/Analysis/InstructionSimplify.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/InstructionSimplify.cpp b/llvm/lib/Analysis/InstructionSimplify.cpp index 7adabe54d24..a2f9862383f 100644 --- a/llvm/lib/Analysis/InstructionSimplify.cpp +++ b/llvm/lib/Analysis/InstructionSimplify.cpp @@ -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). |