diff options
author | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-08-28 21:01:53 +0000 |
---|---|---|
committer | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-08-28 21:01:53 +0000 |
commit | 6858571c5a7943ccd260a5c66fde0ab0712e32c0 (patch) | |
tree | bfa45990870f0e4e3ad86af0cb93628b209f8761 /target-sh4 | |
parent | f10dc08e004bf9d96918c5284bbaebb94a2a5c1c (diff) |
SH4: Init TCG variables
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5095 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-sh4')
-rw-r--r-- | target-sh4/translate.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/target-sh4/translate.c b/target-sh4/translate.c index 9ea6b3ed43..4fef2d82ec 100644 --- a/target-sh4/translate.c +++ b/target-sh4/translate.c @@ -56,7 +56,7 @@ enum { BS_EXCP = 3, /* We reached an exception condition */ }; -static TCGv cpu_env; +static TCGv cpu_env, cpu_T[2]; #include "gen-icount.h" @@ -66,6 +66,8 @@ static void sh4_translate_init(void) if (done_init) return; cpu_env = tcg_global_reg_new(TCG_TYPE_PTR, TCG_AREG0, "env"); + cpu_T[0] = tcg_global_reg_new(TCG_TYPE_TL, TCG_AREG1, "T0"); + cpu_T[1] = tcg_global_reg_new(TCG_TYPE_TL, TCG_AREG2, "T1"); done_init = 1; } |