1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 03:53:04 +02:00

Fix formatting of r273144. NFC.

llvm-svn: 273149
This commit is contained in:
Patrik Hagglund 2016-06-20 11:19:58 +00:00
parent 62398e4da8
commit 81a7b97fbf

View 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");