From 8349d2aeb3b41e3a99c6db4114643b68577a49b6 Mon Sep 17 00:00:00 2001 From: Richard Henderson Date: Sat, 13 Feb 2021 13:03:12 +0000 Subject: exec: Move TranslationBlock typedef to qemu/typedefs.h MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This also means we don't need an extra declaration of the structure in hw/core/cpu.h. Signed-off-by: Richard Henderson Signed-off-by: Alex Bennée Reviewed-by: Alex Bennée Reviewed-by: Philippe Mathieu-Daudé Message-Id: <20210208233906.479571-2-richard.henderson@linaro.org> Message-Id: <20210213130325.14781-11-alex.bennee@linaro.org> --- target/lm32/translate.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'target/lm32') diff --git a/target/lm32/translate.c b/target/lm32/translate.c index 030b232..20c70d0 100644 --- a/target/lm32/translate.c +++ b/target/lm32/translate.c @@ -93,7 +93,7 @@ typedef struct DisasContext { unsigned int tb_flags, synced_flags; /* tb dependent flags. */ int is_jmp; - struct TranslationBlock *tb; + TranslationBlock *tb; int singlestep_enabled; uint32_t features; -- cgit v1.1