diff options
author | malc <malc@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-11-12 20:36:24 +0000 |
---|---|---|
committer | malc <malc@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-11-12 20:36:24 +0000 |
commit | 2946898b48bd210b4874c80e720ffc59572532d0 (patch) | |
tree | 64123111bdae9245f6983192727efa481d2c5011 /tcg/ppc | |
parent | 8421d9e56f2beb6096366e878dba1b655f06914a (diff) | |
download | qemu-2946898b48bd210b4874c80e720ffc59572532d0.zip |
Rename misnamed BACK_CHAIN_OFFSET to LR_OFFSET
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5711 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'tcg/ppc')
-rw-r--r-- | tcg/ppc/tcg-target.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tcg/ppc/tcg-target.c b/tcg/ppc/tcg-target.c index ca8ca36b13..7684aa46b8 100644 --- a/tcg/ppc/tcg-target.c +++ b/tcg/ppc/tcg-target.c @@ -26,10 +26,10 @@ static uint8_t *tb_ret_addr; #ifdef __APPLE__ #define LINKAGE_AREA_SIZE 24 -#define BACK_CHAIN_OFFSET 8 +#define LR_OFFSET 8 #else #define LINKAGE_AREA_SIZE 8 -#define BACK_CHAIN_OFFSET 4 +#define LR_OFFSET 4 #endif #define FAST_PATH @@ -845,7 +845,7 @@ void tcg_target_qemu_prologue (TCGContext *s) | (i * 4 + LINKAGE_AREA_SIZE + TCG_STATIC_CALL_ARGS_SIZE) ) ); - tcg_out32 (s, STW | RS (0) | RA (1) | (frame_size + BACK_CHAIN_OFFSET)); + tcg_out32 (s, STW | RS (0) | RA (1) | (frame_size + LR_OFFSET)); tcg_out32 (s, MTSPR | RS (3) | CTR); tcg_out32 (s, BCCTR | BO_ALWAYS); @@ -858,7 +858,7 @@ void tcg_target_qemu_prologue (TCGContext *s) | (i * 4 + LINKAGE_AREA_SIZE + TCG_STATIC_CALL_ARGS_SIZE) ) ); - tcg_out32 (s, LWZ | RT (0) | RA (1) | (frame_size + BACK_CHAIN_OFFSET)); + tcg_out32 (s, LWZ | RT (0) | RA (1) | (frame_size + LR_OFFSET)); tcg_out32 (s, MTSPR | RS (0) | LR); tcg_out32 (s, ADDI | RT (1) | RA (1) | frame_size); tcg_out32 (s, BCLR | BO_ALWAYS); |