diff options
author | Richard Henderson | 2020-10-29 17:49:05 +0100 |
---|---|---|
committer | Richard Henderson | 2021-01-07 16:09:41 +0100 |
commit | d997143533e010b37363b10eddaf18ccb0e5659f (patch) | |
tree | ab81d43635bc78c894f5de4038da3993c2e1801e /include/tcg/tcg-op.h | |
parent | tcg: Adjust tb_target_set_jmp_target for split-wx (diff) | |
download | qemu-d997143533e010b37363b10eddaf18ccb0e5659f.tar.gz qemu-d997143533e010b37363b10eddaf18ccb0e5659f.tar.xz qemu-d997143533e010b37363b10eddaf18ccb0e5659f.zip |
tcg: Make DisasContextBase.tb const
There is nothing within the translators that ought to be
changing the TranslationBlock data, so make it const.
This does not actually use the read-only copy of the
data structure that exists within the rx region.
Reviewed-by: Joelle van Dyne <j@getutm.app>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'include/tcg/tcg-op.h')
-rw-r--r-- | include/tcg/tcg-op.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/tcg/tcg-op.h b/include/tcg/tcg-op.h index 5b3bdacc39..901b19f32a 100644 --- a/include/tcg/tcg-op.h +++ b/include/tcg/tcg-op.h @@ -805,7 +805,7 @@ static inline void tcg_gen_insn_start(target_ulong pc, target_ulong a1, * be NULL and @idx should be 0. Otherwise, @tb should be valid and * @idx should be one of the TB_EXIT_ values. */ -void tcg_gen_exit_tb(TranslationBlock *tb, unsigned idx); +void tcg_gen_exit_tb(const TranslationBlock *tb, unsigned idx); /** * tcg_gen_goto_tb() - output goto_tb TCG operation |