mirror of
https://github.com/RPCSX/llvm.git
synced 2025-02-06 04:19:10 +00:00
Down-growing offsets from FP should start at 0, not -1.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1255 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
5b43af962b
commit
5a81692f47
@ -1278,7 +1278,7 @@ private:
|
||||
static const int MinStackFrameSize = 176;
|
||||
static const int NumFixedOutgoingArgs = 6;
|
||||
static const int SizeOfEachArgOnStack = 8;
|
||||
static const int StaticAreaOffsetFromFP = -1 + OFFSET;
|
||||
static const int StaticAreaOffsetFromFP = 0 + OFFSET;
|
||||
static const int FirstIncomingArgOffsetFromFP = 128 + OFFSET;
|
||||
static const int FirstOptionalIncomingArgOffsetFromFP = 176 + OFFSET;
|
||||
static const int FirstOutgoingArgOffsetFromSP = 128 + OFFSET;
|
||||
|
Loading…
x
Reference in New Issue
Block a user