diff options
author | Richard Henderson | 2021-02-13 14:03:12 +0100 |
---|---|---|
committer | Alex Bennée | 2021-02-18 09:19:08 +0100 |
commit | 8349d2aeb3b41e3a99c6db4114643b68577a49b6 (patch) | |
tree | 12659229cadbfe52cfe23d70870092ae6730f3a1 /include/exec | |
parent | accel/tcg/plugin-gen: fix the call signature for inline callbacks (diff) | |
download | qemu-8349d2aeb3b41e3a99c6db4114643b68577a49b6.tar.gz qemu-8349d2aeb3b41e3a99c6db4114643b68577a49b6.tar.xz qemu-8349d2aeb3b41e3a99c6db4114643b68577a49b6.zip |
exec: Move TranslationBlock typedef to qemu/typedefs.h
This also means we don't need an extra declaration of
the structure in hw/core/cpu.h.
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-Id: <20210208233906.479571-2-richard.henderson@linaro.org>
Message-Id: <20210213130325.14781-11-alex.bennee@linaro.org>
Diffstat (limited to 'include/exec')
-rw-r--r-- | include/exec/tb-context.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/exec/tb-context.h b/include/exec/tb-context.h index ec4c13b455..cc33979113 100644 --- a/include/exec/tb-context.h +++ b/include/exec/tb-context.h @@ -26,7 +26,6 @@ #define CODE_GEN_HTABLE_BITS 15 #define CODE_GEN_HTABLE_SIZE (1 << CODE_GEN_HTABLE_BITS) -typedef struct TranslationBlock TranslationBlock; typedef struct TBContext TBContext; struct TBContext { |