Commit 6858571c5a7943ccd260a5c66fde0ab0712e32c0
1 parent
f10dc08e
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
Showing
1 changed file
with
3 additions
and
1 deletions
target-sh4/translate.c
... | ... | @@ -56,7 +56,7 @@ enum { |
56 | 56 | BS_EXCP = 3, /* We reached an exception condition */ |
57 | 57 | }; |
58 | 58 | |
59 | -static TCGv cpu_env; | |
59 | +static TCGv cpu_env, cpu_T[2]; | |
60 | 60 | |
61 | 61 | #include "gen-icount.h" |
62 | 62 | |
... | ... | @@ -66,6 +66,8 @@ static void sh4_translate_init(void) |
66 | 66 | if (done_init) |
67 | 67 | return; |
68 | 68 | cpu_env = tcg_global_reg_new(TCG_TYPE_PTR, TCG_AREG0, "env"); |
69 | + cpu_T[0] = tcg_global_reg_new(TCG_TYPE_TL, TCG_AREG1, "T0"); | |
70 | + cpu_T[1] = tcg_global_reg_new(TCG_TYPE_TL, TCG_AREG2, "T1"); | |
69 | 71 | done_init = 1; |
70 | 72 | } |
71 | 73 | ... | ... |