diff options
author | Dan Gohman <gohman@apple.com> | 2010-02-24 06:46:09 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2010-02-24 06:46:09 +0000 |
commit | 94732024eb0c9baec43d601830602a4fe78f6e4d (patch) | |
tree | 0aae8cf6dc14a0be2f038e846b9ecbb2c4daa2f9 /llvm/lib/Transforms/InstCombine/InstCombineCompares.cpp | |
parent | df8a8a8c6f4d528084c55aa4c690098774a49100 (diff) | |
download | bcm5719-llvm-94732024eb0c9baec43d601830602a4fe78f6e4d.tar.gz bcm5719-llvm-94732024eb0c9baec43d601830602a4fe78f6e4d.zip |
Fix indentation.
llvm-svn: 97024
Diffstat (limited to 'llvm/lib/Transforms/InstCombine/InstCombineCompares.cpp')
-rw-r--r-- | llvm/lib/Transforms/InstCombine/InstCombineCompares.cpp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/llvm/lib/Transforms/InstCombine/InstCombineCompares.cpp b/llvm/lib/Transforms/InstCombine/InstCombineCompares.cpp index 5a1cb364ca6..518af7477d0 100644 --- a/llvm/lib/Transforms/InstCombine/InstCombineCompares.cpp +++ b/llvm/lib/Transforms/InstCombine/InstCombineCompares.cpp @@ -2458,17 +2458,17 @@ Instruction *InstCombiner::visitFCmpInst(FCmpInst &I) { return SelectInst::Create(LHSI->getOperand(0), Op1, Op2); break; } - case Instruction::Load: - if (GetElementPtrInst *GEP = - dyn_cast<GetElementPtrInst>(LHSI->getOperand(0))) { - if (GlobalVariable *GV = dyn_cast<GlobalVariable>(GEP->getOperand(0))) - if (GV->isConstant() && GV->hasDefinitiveInitializer() && - !cast<LoadInst>(LHSI)->isVolatile()) - if (Instruction *Res = FoldCmpLoadFromIndexedGlobal(GEP, GV, I)) - return Res; + case Instruction::Load: + if (GetElementPtrInst *GEP = + dyn_cast<GetElementPtrInst>(LHSI->getOperand(0))) { + if (GlobalVariable *GV = dyn_cast<GlobalVariable>(GEP->getOperand(0))) + if (GV->isConstant() && GV->hasDefinitiveInitializer() && + !cast<LoadInst>(LHSI)->isVolatile()) + if (Instruction *Res = FoldCmpLoadFromIndexedGlobal(GEP, GV, I)) + return Res; + } + break; } - break; - } } return Changed ? &I : 0; |