summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDuncan Sands <baldrick@free.fr>2012-03-23 08:29:04 +0000
committerDuncan Sands <baldrick@free.fr>2012-03-23 08:29:04 +0000
commit8f897dc88bc99a3aecbd1f5720a5d1da771d1b67 (patch)
tree2a2dfd5a60390563f17188c326593c0c35b4e157
parent46fc9ca53f0e6e14580615cd28dd1ac1b2ecfb19 (diff)
downloadbcm5719-llvm-8f897dc88bc99a3aecbd1f5720a5d1da771d1b67.tar.gz
bcm5719-llvm-8f897dc88bc99a3aecbd1f5720a5d1da771d1b67.zip
Indentation.
llvm-svn: 153322
-rw-r--r--llvm/lib/Transforms/Scalar/ScalarReplAggregates.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Scalar/ScalarReplAggregates.cpp b/llvm/lib/Transforms/Scalar/ScalarReplAggregates.cpp
index 4e348687777..83627df2f52 100644
--- a/llvm/lib/Transforms/Scalar/ScalarReplAggregates.cpp
+++ b/llvm/lib/Transforms/Scalar/ScalarReplAggregates.cpp
@@ -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();
OpenPOWER on IntegriCloud