diff options
author | balrog <balrog@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-05-23 12:47:22 +0000 |
---|---|---|
committer | balrog <balrog@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-05-23 12:47:22 +0000 |
commit | bedba0cd074db0d581211056e52686ac4986afc6 (patch) | |
tree | 4bf51cfb1f04a86b3b9f5ebca27e5a39bdf29f00 /tcg | |
parent | 24bf7b3a1d48d0f2e9960bfc9d7ec758353e078e (diff) |
Define TCG_TARGET_CALL_STACK_OFFSET on arm.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4541 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'tcg')
-rw-r--r-- | tcg/arm/tcg-target.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tcg/arm/tcg-target.h b/tcg/arm/tcg-target.h index ee8d78c8cf..6c180af694 100644 --- a/tcg/arm/tcg-target.h +++ b/tcg/arm/tcg-target.h @@ -55,8 +55,9 @@ enum { }; /* used for function call generation */ -#define TCG_REG_CALL_STACK TCG_REG_R13 -#define TCG_TARGET_STACK_ALIGN 8 +#define TCG_REG_CALL_STACK TCG_REG_R13 +#define TCG_TARGET_STACK_ALIGN 8 +#define TCG_TARGET_CALL_STACK_OFFSET 0 enum { /* Note: must be synced with dyngen-exec.h */ |