diff options
author | Richard Henderson <rth@twiddle.net> | 2011-08-17 14:11:48 -0700 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2011-08-21 18:52:25 +0000 |
commit | 6e6a99249cb54188ab3a1cc1152fa69420a174ce (patch) | |
tree | b173b4de5197960d79d4b016e93e38e8c817aece /tcg | |
parent | cb25c80a9b8324c59aa157c4e9cfe296489d0b9c (diff) |
tcg-hppa: Fix CPU_TEMP_BUF_NLONGS oversight.
Signed-off-by: Richard Henderson <rth@twiddle.net>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'tcg')
-rw-r--r-- | tcg/hppa/tcg-target.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tcg/hppa/tcg-target.c b/tcg/hppa/tcg-target.c index 222f33eb6d..71d9677ab2 100644 --- a/tcg/hppa/tcg-target.c +++ b/tcg/hppa/tcg-target.c @@ -1650,7 +1650,7 @@ static void tcg_target_qemu_prologue(TCGContext *s) /* Record the location of the TCG temps. */ tcg_set_frame(s, TCG_REG_CALL_STACK, -frame_size + i * 4, - TCG_TEMP_BUF_NLONGS * sizeof(long)); + CPU_TEMP_BUF_NLONGS * sizeof(long)); #ifdef CONFIG_USE_GUEST_BASE if (GUEST_BASE != 0) { |