Fix indentation.

llvm-svn: 81484
This commit is contained in:
Dan Gohman 2009-09-11 00:05:10 +00:00
parent aa66e3d968
commit 9040a3526e

View File

@ -1776,7 +1776,7 @@ bool BinaryOperator::isFNeg(const Value *V) {
if (const BinaryOperator *Bop = dyn_cast<BinaryOperator>(V))
if (Bop->getOpcode() == Instruction::FSub)
if (Constant* C = dyn_cast<Constant>(Bop->getOperand(0)))
return C->isNegativeZeroValue();
return C->isNegativeZeroValue();
return false;
}