]> granicus.if.org Git - llvm/commitdiff
Fix formatting of r273144. NFC.
authorPatrik Hagglund <patrik.h.hagglund@ericsson.com>
Mon, 20 Jun 2016 11:19:58 +0000 (11:19 +0000)
committerPatrik Hagglund <patrik.h.hagglund@ericsson.com>
Mon, 20 Jun 2016 11:19:58 +0000 (11:19 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@273149 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Scalar/SROA.cpp

index 830b23c4bff752464a3177425dd5808d6db2a106..7d33259c030b7c49139a6e794e5b0885cc62c8ed 100644 (file)
@@ -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");