mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-05 20:35:44 +00:00
microblaze: Remove unused members from the disas context
Signed-off-by: Edgar E. Iglesias <edgar.iglesias@petalogix.com>
This commit is contained in:
parent
4b5ef0b50d
commit
a5efa6441c
1 changed files with 1 additions and 5 deletions
|
@ -63,8 +63,7 @@ static TCGv env_iflags;
|
|||
/* This is the state at translation time. */
|
||||
typedef struct DisasContext {
|
||||
CPUState *env;
|
||||
target_ulong pc, ppc;
|
||||
target_ulong cache_pc;
|
||||
target_ulong pc;
|
||||
|
||||
/* Decoder. */
|
||||
int type_b;
|
||||
|
@ -1274,9 +1273,7 @@ gen_intermediate_code_internal(CPUState *env, TranslationBlock *tb,
|
|||
dc->is_jmp = DISAS_NEXT;
|
||||
dc->jmp = 0;
|
||||
dc->delayed_branch = !!(dc->tb_flags & D_FLAG);
|
||||
dc->ppc = pc_start;
|
||||
dc->pc = pc_start;
|
||||
dc->cache_pc = -1;
|
||||
dc->singlestep_enabled = env->singlestep_enabled;
|
||||
dc->cpustate_changed = 0;
|
||||
dc->abort_at_next_insn = 0;
|
||||
|
@ -1332,7 +1329,6 @@ gen_intermediate_code_internal(CPUState *env, TranslationBlock *tb,
|
|||
decode(dc);
|
||||
if (dc->clear_imm)
|
||||
dc->tb_flags &= ~IMM_FLAG;
|
||||
dc->ppc = dc->pc;
|
||||
dc->pc += 4;
|
||||
num_insns++;
|
||||
|
||||
|
|
Loading…
Reference in a new issue