diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2011-05-14 12:58:04 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2011-06-26 18:25:43 +0000 |
commit | 614f104dfd2bf6d25170fb0afc086920cc7c407b (patch) | |
tree | 35fb22e13fe420bf0addb0b42a0abf230b2f0347 /tcg/ppc/tcg-target.c | |
parent | cea5f9a28faa528b6b1b117c9ab2d8828f473fef (diff) | |
download | hqemu-614f104dfd2bf6d25170fb0afc086920cc7c407b.zip hqemu-614f104dfd2bf6d25170fb0afc086920cc7c407b.tar.gz |
Delegate setup of TCG temporaries to targets
Delegate TCG temp_buf setup to targets, so that they can use a stack
frame later instead.
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'tcg/ppc/tcg-target.c')
-rw-r--r-- | tcg/ppc/tcg-target.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tcg/ppc/tcg-target.c b/tcg/ppc/tcg-target.c index 266e699..dde4e18 100644 --- a/tcg/ppc/tcg-target.c +++ b/tcg/ppc/tcg-target.c @@ -1919,4 +1919,6 @@ static void tcg_target_init(TCGContext *s) #endif tcg_add_target_add_op_defs(ppc_op_defs); + tcg_set_frame(s, TCG_AREG0, offsetof(CPUState, temp_buf), + CPU_TEMP_BUF_NLONGS * sizeof(long)); } |