[llvm-commits] [llvm] r81484 - /llvm/trunk/lib/VMCore/Instructions.cpp

Dan Gohman gohman at apple.com
Thu Sep 10 17:05:10 PDT 2009


Author: djg
Date: Thu Sep 10 19:05:10 2009
New Revision: 81484

URL: http://llvm.org/viewvc/llvm-project?rev=81484&view=rev
Log:
Fix indentation.

Modified:
    llvm/trunk/lib/VMCore/Instructions.cpp

Modified: llvm/trunk/lib/VMCore/Instructions.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/VMCore/Instructions.cpp?rev=81484&r1=81483&r2=81484&view=diff

==============================================================================
--- llvm/trunk/lib/VMCore/Instructions.cpp (original)
+++ llvm/trunk/lib/VMCore/Instructions.cpp Thu Sep 10 19:05:10 2009
@@ -1776,7 +1776,7 @@
   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;
 }
 





More information about the llvm-commits mailing list