From: Dan Gohman Date: Fri, 11 Sep 2009 00:05:10 +0000 (+0000) Subject: Fix indentation. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=c24edfaee2906bfe13cb1af48be020adf0f8c14f;p=oota-llvm.git Fix indentation. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81484 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/VMCore/Instructions.cpp b/lib/VMCore/Instructions.cpp index e52bc1c0518..548737ccad8 100644 --- a/lib/VMCore/Instructions.cpp +++ b/lib/VMCore/Instructions.cpp @@ -1776,7 +1776,7 @@ bool BinaryOperator::isFNeg(const Value *V) { if (const BinaryOperator *Bop = dyn_cast(V)) if (Bop->getOpcode() == Instruction::FSub) if (Constant* C = dyn_cast(Bop->getOperand(0))) - return C->isNegativeZeroValue(); + return C->isNegativeZeroValue(); return false; }