diff options
| author | Richard Henderson | 2013-03-26 04:54:30 +0100 |
|---|---|---|
| committer | Richard Henderson | 2013-04-05 20:35:40 +0200 |
| commit | a4924e8bb533fb537d82a463b6465d80adaea0f5 (patch) | |
| tree | 79709e97e8328438f5e4f7221a8c142dfcb5718f /tcg/s390/tcg-target.h | |
| parent | tcg-s390: Fix movi (diff) | |
| download | qemu-a4924e8bb533fb537d82a463b6465d80adaea0f5.tar.gz qemu-a4924e8bb533fb537d82a463b6465d80adaea0f5.tar.xz qemu-a4924e8bb533fb537d82a463b6465d80adaea0f5.zip | |
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 |
