diff options
author | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-02-03 19:56:33 +0000 |
---|---|---|
committer | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-02-03 19:56:33 +0000 |
commit | ac56dd48120521b530e48f641b65b1f15c061899 (patch) | |
tree | 4b7c366ef50e9e331718dc77081662d68d8e08d8 /target-i386/translate.c | |
parent | 724db11840576deb3504aad7cfca06bf1e997799 (diff) |
Add TCG variable opaque type.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3961 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-i386/translate.c')
-rw-r--r-- | target-i386/translate.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/target-i386/translate.c b/target-i386/translate.c index aa397f6d06..2b8a04ea3e 100644 --- a/target-i386/translate.c +++ b/target-i386/translate.c @@ -122,9 +122,9 @@ #endif /* global register indexes */ -static int cpu_env, cpu_T[2], cpu_A0; +static TCGv cpu_env, cpu_T[2], cpu_A0; /* local register indexes (only used inside old micro ops) */ -static int cpu_tmp0; +static TCGv cpu_tmp0; #ifdef TARGET_X86_64 static int x86_64_hregs; @@ -5592,7 +5592,7 @@ static target_ulong disas_insn(DisasContext *s, target_ulong pc_start) gen_op_mov_reg_T0(OT_QUAD, reg); } else { - int tmp0; + TCGv tmp0; gen_op_mov_TN_reg(OT_LONG, 0, reg); tmp0 = tcg_temp_new(TCG_TYPE_I32); |