diff options
| author | Evgeny Voevodin | 2012-11-21 08:43:04 +0100 |
|---|---|---|
| committer | Blue Swirl | 2012-12-08 15:24:42 +0100 |
| commit | 25983cad31969e3003eef77bc03a6700f46899d2 (patch) | |
| tree | 91d1ec1c6693baa9cfa30e3d16b91b2652b80427 /target-microblaze | |
| parent | tcg/tcg.h: Duplicate global TCG gen_opc_ arrays into TCGContext. (diff) | |
| download | qemu-25983cad31969e3003eef77bc03a6700f46899d2.tar.gz qemu-25983cad31969e3003eef77bc03a6700f46899d2.tar.xz 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-microblaze')
| -rw-r--r-- | target-microblaze/translate.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target-microblaze/translate.c b/target-microblaze/translate.c index cce4494954..6803f735b1 100644 --- a/target-microblaze/translate.c +++ b/target-microblaze/translate.c @@ -1790,7 +1790,7 @@ gen_intermediate_code_internal(CPUMBState *env, TranslationBlock *tb, while (lj < j) gen_opc_instr_start[lj++] = 0; } - gen_opc_pc[lj] = dc->pc; + tcg_ctx.gen_opc_pc[lj] = dc->pc; gen_opc_instr_start[lj] = 1; gen_opc_icount[lj] = num_insns; } @@ -2014,5 +2014,5 @@ MicroBlazeCPU *cpu_mb_init(const char *cpu_model) void restore_state_to_opc(CPUMBState *env, TranslationBlock *tb, int pc_pos) { - env->sregs[SR_PC] = gen_opc_pc[pc_pos]; + env->sregs[SR_PC] = tcg_ctx.gen_opc_pc[pc_pos]; } |
