diff options
author | Richard Henderson <rth@twiddle.net> | 2013-03-25 20:54:30 -0700 |
---|---|---|
committer | Richard Henderson <rth@twiddle.net> | 2013-04-05 13:35:40 -0500 |
commit | a4924e8bb533fb537d82a463b6465d80adaea0f5 (patch) | |
tree | 79709e97e8328438f5e4f7221a8c142dfcb5718f /tcg/s390/tcg-target.h | |
parent | a22971f99f4846a0947f35548b7f3f76159339f0 (diff) |
tcg-s390: Properly allocate a stack frame.
Set TCG_TARGET_CALL_STACK_OFFSET properly for the abi. Allocate the
standard TCG_STATIC_CALL_ARGS_SIZE. And while we're at it, allocate
space for CPU_TEMP_BUF_NLONGS.
Signed-off-by: Richard Henderson <rth@twiddle.net>
Diffstat (limited to 'tcg/s390/tcg-target.h')
-rw-r--r-- | tcg/s390/tcg-target.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tcg/s390/tcg-target.h b/tcg/s390/tcg-target.h index 40211e68f1..c6d9e848a6 100644 --- a/tcg/s390/tcg-target.h +++ b/tcg/s390/tcg-target.h @@ -100,7 +100,7 @@ typedef enum TCGReg { /* used for function call generation */ #define TCG_REG_CALL_STACK TCG_REG_R15 #define TCG_TARGET_STACK_ALIGN 8 -#define TCG_TARGET_CALL_STACK_OFFSET 0 +#define TCG_TARGET_CALL_STACK_OFFSET 160 #define TCG_TARGET_EXTEND_ARGS 1 |