Fix indentation.
authorDan Gohman <gohman@apple.com>
Fri, 11 Sep 2009 00:05:10 +0000 (00:05 +0000)
committerDan Gohman <gohman@apple.com>
Fri, 11 Sep 2009 00:05:10 +0000 (00:05 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81484 91177308-0d34-0410-b5e6-96231b3b80d8

lib/VMCore/Instructions.cpp

index e52bc1c0518a50b5bd7a2b23bae66fabe193f693..548737ccad891d5ba426736d93e27e6b0fb9e542 100644 (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;
 }