From 0c2a4512244b92e41ecd3f4e88a6450a6f87ea21 Mon Sep 17 00:00:00 2001 From: Patrik Hagglund Date: Mon, 20 Jun 2016 11:19:58 +0000 Subject: [PATCH] Fix formatting of r273144. NFC. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@273149 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Transforms/Scalar/SROA.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/Transforms/Scalar/SROA.cpp b/lib/Transforms/Scalar/SROA.cpp index 830b23c4bff..7d33259c030 100644 --- a/lib/Transforms/Scalar/SROA.cpp +++ b/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"); -- 2.50.1