diff options
author | David Majnemer <david.majnemer@gmail.com> | 2013-06-29 09:45:35 +0000 |
---|---|---|
committer | David Majnemer <david.majnemer@gmail.com> | 2013-06-29 09:45:35 +0000 |
commit | 92a8a7d45abc8207ee9a9c5282da7dc151aff3c7 (patch) | |
tree | 2be5e19384678777d355d187143cdc1832846763 | |
parent | 797227eea6113f242d34d4f100611b7d8172888a (diff) | |
download | bcm5719-llvm-92a8a7d45abc8207ee9a9c5282da7dc151aff3c7.tar.gz bcm5719-llvm-92a8a7d45abc8207ee9a9c5282da7dc151aff3c7.zip |
InstCombine: Small whitespace cleanup in FoldGEPICmp
llvm-svn: 185258
-rw-r--r-- | llvm/lib/Transforms/InstCombine/InstCombineCompares.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/InstCombine/InstCombineCompares.cpp b/llvm/lib/Transforms/InstCombine/InstCombineCompares.cpp index 2a87f8ab3be..ff207fb1b69 100644 --- a/llvm/lib/Transforms/InstCombine/InstCombineCompares.cpp +++ b/llvm/lib/Transforms/InstCombine/InstCombineCompares.cpp @@ -679,7 +679,7 @@ Instruction *InstCombiner::FoldGEPICmp(GEPOperator *GEPLHS, Value *RHS, } if (AllZeros) return FoldGEPICmp(GEPRHS, GEPLHS->getOperand(0), - ICmpInst::getSwappedPredicate(Cond), I); + ICmpInst::getSwappedPredicate(Cond), I); // If the other GEP has all zero indices, recurse. AllZeros = true; |