From: Patrik Hagglund Date: Mon, 20 Jun 2016 11:19:58 +0000 (+0000) Subject: Fix formatting of r273144. NFC. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0c2a4512244b92e41ecd3f4e88a6450a6f87ea21;p=llvm Fix formatting of r273144. NFC. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@273149 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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");