diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2024-01-28 12:46:44 +1000 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2024-01-29 21:04:10 +1000 |
commit | 1764ad70ce7c78b7f2f18bcf79cbab42a4e18b96 (patch) | |
tree | 2fdf10a69cac6424b542c4df8ef03c1749d3213c /target/sh4 | |
parent | 93c6091bfa41792b28b25cd7e3c1f578e44b0d15 (diff) | |
download | qemu-1764ad70ce7c78b7f2f18bcf79cbab42a4e18b96.zip qemu-1764ad70ce7c78b7f2f18bcf79cbab42a4e18b96.tar.gz qemu-1764ad70ce7c78b7f2f18bcf79cbab42a4e18b96.tar.bz2 |
include/qemu: Add TCGCPUOps typedef to typedefs.h
QEMU coding style recommends using structure typedefs.
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'target/sh4')
-rw-r--r-- | target/sh4/cpu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/sh4/cpu.c b/target/sh4/cpu.c index 806a0ef..3977295 100644 --- a/target/sh4/cpu.c +++ b/target/sh4/cpu.c @@ -237,7 +237,7 @@ static const struct SysemuCPUOps sh4_sysemu_ops = { #include "hw/core/tcg-cpu-ops.h" -static const struct TCGCPUOps superh_tcg_ops = { +static const TCGCPUOps superh_tcg_ops = { .initialize = sh4_translate_init, .synchronize_from_tb = superh_cpu_synchronize_from_tb, .restore_state_to_opc = superh_restore_state_to_opc, |