diff options
author | Evgeny Voevodin <e.voevodin@samsung.com> | 2012-11-21 11:43:04 +0400 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2012-12-08 14:24:42 +0000 |
commit | 25983cad31969e3003eef77bc03a6700f46899d2 (patch) | |
tree | 91d1ec1c6693baa9cfa30e3d16b91b2652b80427 /target-openrisc/translate.c | |
parent | c3a43607d927e6a0ecce0b61e8297c1cfe604c14 (diff) | |
download | qemu-25983cad31969e3003eef77bc03a6700f46899d2.tar.gz qemu-25983cad31969e3003eef77bc03a6700f46899d2.tar.bz2 qemu-25983cad31969e3003eef77bc03a6700f46899d2.zip |
TCG: Use gen_opc_pc 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 'target-openrisc/translate.c')
-rw-r--r-- | target-openrisc/translate.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target-openrisc/translate.c b/target-openrisc/translate.c index f14da7bd1a..b7ad6a4ef6 100644 --- a/target-openrisc/translate.c +++ b/target-openrisc/translate.c @@ -1710,7 +1710,7 @@ static inline void gen_intermediate_code_internal(OpenRISCCPU *cpu, gen_opc_instr_start[k++] = 0; } } - gen_opc_pc[k] = dc->pc; + tcg_ctx.gen_opc_pc[k] = dc->pc; gen_opc_instr_start[k] = 1; gen_opc_icount[k] = num_insns; } @@ -1832,5 +1832,5 @@ void cpu_dump_state(CPUOpenRISCState *env, FILE *f, void restore_state_to_opc(CPUOpenRISCState *env, TranslationBlock *tb, int pc_pos) { - env->pc = gen_opc_pc[pc_pos]; + env->pc = tcg_ctx.gen_opc_pc[pc_pos]; } |