diff options
author | Evgeny Voevodin <e.voevodin@samsung.com> | 2012-11-21 11:43:05 +0400 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2012-12-08 14:24:42 +0000 |
commit | c9c99c22d5f8e9cfa83260fbe236a57e7383d673 (patch) | |
tree | 006e81562ad4e313ba068e773945597b8f955341 /translate-all.c | |
parent | 25983cad31969e3003eef77bc03a6700f46899d2 (diff) |
TCG: Use gen_opc_icount from context instead of global variable.
Signed-off-by: Evgeny Voevodin <e.voevodin@samsung.com>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'translate-all.c')
-rw-r--r-- | translate-all.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/translate-all.c b/translate-all.c index d9c2e57861..177e95ab0c 100644 --- a/translate-all.c +++ b/translate-all.c @@ -148,7 +148,7 @@ int cpu_restore_state(TranslationBlock *tb, /* now find start of instruction before */ while (gen_opc_instr_start[j] == 0) j--; - env->icount_decr.u16.low -= gen_opc_icount[j]; + env->icount_decr.u16.low -= s->gen_opc_icount[j]; restore_state_to_opc(env, tb, j); |