1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

Edit a comment.

llvm-svn: 82641
This commit is contained in:
Bob Wilson 2009-09-23 18:53:19 +00:00
parent 18dae0848f
commit e92f61e68b

View File

@ -433,8 +433,7 @@ static inline void
AdjustStackOffset(MachineFrameInfo *FFI, int FrameIdx, AdjustStackOffset(MachineFrameInfo *FFI, int FrameIdx,
bool StackGrowsDown, int64_t &Offset, bool StackGrowsDown, int64_t &Offset,
unsigned &MaxAlign) { unsigned &MaxAlign) {
// If stack grows down, we need to add size of find the lowest address of the // If the stack grows down, add the object size to find the lowest address.
// object.
if (StackGrowsDown) if (StackGrowsDown)
Offset += FFI->getObjectSize(FrameIdx); Offset += FFI->getObjectSize(FrameIdx);