summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrik Hagglund <patrik.h.hagglund@ericsson.com>2016-06-20 11:19:58 +0000
committerPatrik Hagglund <patrik.h.hagglund@ericsson.com>2016-06-20 11:19:58 +0000
commit4e0bd84b354d7f432b51b9ddf4153149154e195c (patch)
tree97b3dbffacd9377e86d660cc8f8fbad301fb48fd
parent0aab2e398a240d5f8fd104a19b6d940ab0dbb98a (diff)
downloadbcm5719-llvm-4e0bd84b354d7f432b51b9ddf4153149154e195c.tar.gz
bcm5719-llvm-4e0bd84b354d7f432b51b9ddf4153149154e195c.zip
Fix formatting of r273144. NFC.
llvm-svn: 273149
-rw-r--r--llvm/lib/Transforms/Scalar/SROA.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/lib/Transforms/Scalar/SROA.cpp b/llvm/lib/Transforms/Scalar/SROA.cpp
index 830b23c4bff..7d33259c030 100644
--- a/llvm/lib/Transforms/Scalar/SROA.cpp
+++ b/llvm/lib/Transforms/Scalar/SROA.cpp
@@ -3110,10 +3110,10 @@ private:
//
// The gep and extractvalue values are factored out of the CreateStore
// call to make the output independent of the argument evaluation order.
- Value *ExtractValue = IRB.CreateExtractValue(Agg, Indices,
- Name + ".extract");
- Value *InBoundsGEP = IRB.CreateInBoundsGEP(nullptr, Ptr, GEPIndices,
- Name + ".gep");
+ Value *ExtractValue =
+ IRB.CreateExtractValue(Agg, Indices, Name + ".extract");
+ Value *InBoundsGEP =
+ IRB.CreateInBoundsGEP(nullptr, Ptr, GEPIndices, Name + ".gep");
Value *Store = IRB.CreateStore(ExtractValue, InBoundsGEP);
(void)Store;
DEBUG(dbgs() << " to: " << *Store << "\n");
OpenPOWER on IntegriCloud