1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 03:02:36 +01:00

[SROA] Adjust to new clang-format style.

llvm-svn: 202134
This commit is contained in:
Chandler Carruth 2014-02-25 11:07:58 +00:00
parent dc7c008316
commit f7d0635448

View File

@ -2275,8 +2275,8 @@ private:
Value *NewPtr = getAdjustedAllocaPtr(IRB, NewBeginOffset,
V->getType()->getPointerTo());
NewSI = IRB.CreateAlignedStore(
V, NewPtr, getOffsetTypeAlign(
V->getType(), NewBeginOffset - NewAllocaBeginOffset),
V, NewPtr, getOffsetTypeAlign(V->getType(),
NewBeginOffset - NewAllocaBeginOffset),
SI.isVolatile());
}
(void)NewSI;