Indentation.
authorDuncan Sands <baldrick@free.fr>
Fri, 23 Mar 2012 08:29:04 +0000 (08:29 +0000)
committerDuncan Sands <baldrick@free.fr>
Fri, 23 Mar 2012 08:29:04 +0000 (08:29 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@153322 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Scalar/ScalarReplAggregates.cpp

index 4e3486877772057f0ff524ebf7cbb534219fb366..83627df2f528cb18795b3b4e40551423b83b3d0f 100644 (file)
@@ -574,7 +574,7 @@ void ConvertToScalarInfo::ConvertUsesToScalar(Value *Ptr, AllocaInst *NewAI,
     // transform it into a store of the expanded constant value.
     if (MemSetInst *MSI = dyn_cast<MemSetInst>(User)) {
       assert(MSI->getRawDest() == Ptr && "Consistency error!");
-     int64_t SNumBytes = cast<ConstantInt>(MSI->getLength())->getSExtValue();
+      int64_t SNumBytes = cast<ConstantInt>(MSI->getLength())->getSExtValue();
       if (SNumBytes > 0 && (SNumBytes >> 32) == 0) {
         unsigned NumBytes = static_cast<unsigned>(SNumBytes);
         unsigned Val = cast<ConstantInt>(MSI->getValue())->getZExtValue();