mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-05 20:35:44 +00:00
target/microblaze: Use translator_ldl
Reviewed-by: Edgar E. Iglesias <edgar.iglesias@amd.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
e8939e801c
commit
1561fee691
1 changed files with 1 additions and 2 deletions
|
@ -25,7 +25,6 @@
|
|||
#include "tcg/tcg-op.h"
|
||||
#include "exec/helper-proto.h"
|
||||
#include "exec/helper-gen.h"
|
||||
#include "exec/cpu_ldst.h"
|
||||
#include "exec/translator.h"
|
||||
#include "qemu/qemu-print.h"
|
||||
|
||||
|
@ -1637,7 +1636,7 @@ static void mb_tr_translate_insn(DisasContextBase *dcb, CPUState *cs)
|
|||
|
||||
dc->tb_flags_to_set = 0;
|
||||
|
||||
ir = cpu_ldl_code(cpu_env(cs), dc->base.pc_next);
|
||||
ir = translator_ldl(cpu_env(cs), &dc->base, dc->base.pc_next);
|
||||
if (!decode(dc, ir)) {
|
||||
trap_illegal(dc, true);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue