e2k: Delete redundant unimplemented messages.

From e2k_cpu_set_pc and e2k_cpu_synchronize_from_tb.

Signed-off-by: Denis Drakhnya <numas13@gmail.com>
This commit is contained in:
Denis Drakhnia 2021-02-12 23:05:36 +02:00 committed by Denis Drakhnia
parent 3cf004027d
commit 3628f0569b
1 changed files with 0 additions and 4 deletions

View File

@ -180,8 +180,6 @@ static void e2k_cpu_set_pc(CPUState *cs, vaddr value)
{
E2KCPU *cpu = E2K_CPU(cs);
qemu_log_mask(LOG_UNIMP, "e2k_cpu_synchronize_from_tb: not implemented\n");
cpu->env.ip = value;
}
@ -189,8 +187,6 @@ static void e2k_cpu_synchronize_from_tb(CPUState *cs, const TranslationBlock *tb
{
E2KCPU *cpu = E2K_CPU(cs);
qemu_log_mask(LOG_UNIMP, "e2k_cpu_synchronize_from_tb: not implemented\n");
cpu->env.ip = tb->pc;
}