Whoops, fix typo in last commit.

llvm-svn: 33417
diff --git a/llvm/lib/VMCore/Constants.cpp b/llvm/lib/VMCore/Constants.cpp
index 243365e..93f8383 100644
--- a/llvm/lib/VMCore/Constants.cpp
+++ b/llvm/lib/VMCore/Constants.cpp
@@ -1882,12 +1882,12 @@
 }
 
 Constant *ConstantExpr::getZeroValueForNegationExpr(const Type *Ty) {
-  if ((const PackedType *PTy = dyn_cast<PackedType>(Ty)) &&
-      PTy->getElementType()->isFloatingPoint()) {
-    std::vector<Constant*> zeros(PTy->getNumElements(),
-                                 ConstantFP::get(PTy->getElementType(), -0.0));
-    return ConstantPacked::get(PTy, zeros);
-  }
+  if (const PackedType *PTy = dyn_cast<PackedType>(Ty))
+    if (PTy->getElementType()->isFloatingPoint()) {
+      std::vector<Constant*> zeros(PTy->getNumElements(),
+                                   ConstantFP::get(PTy->getElementType(),-0.0));
+      return ConstantPacked::get(PTy, zeros);
+    }
 
   if (Ty->isFloatingPoint())
     return ConstantFP::get(Ty, -0.0);