diff options
| author | Richard Henderson <richard.henderson@linaro.org> | 2020-10-29 09:49:05 -0700 |
|---|---|---|
| committer | Richard Henderson <richard.henderson@linaro.org> | 2021-01-07 05:09:41 -1000 |
| commit | d997143533e010b37363b10eddaf18ccb0e5659f (patch) | |
| tree | ab81d43635bc78c894f5de4038da3993c2e1801e /tcg/tcg-op.c | |
| parent | 1acbad0f278ad585bbfc46081b5b639447585be0 (diff) | |
| download | focaccia-qemu-d997143533e010b37363b10eddaf18ccb0e5659f.tar.gz focaccia-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 'tcg/tcg-op.c')
| -rw-r--r-- | tcg/tcg-op.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tcg/tcg-op.c b/tcg/tcg-op.c index af7ce91ffa..19fa8e4691 100644 --- a/tcg/tcg-op.c +++ b/tcg/tcg-op.c @@ -2664,7 +2664,7 @@ void tcg_gen_extr32_i64(TCGv_i64 lo, TCGv_i64 hi, TCGv_i64 arg) /* QEMU specific operations. */ -void tcg_gen_exit_tb(TranslationBlock *tb, unsigned idx) +void tcg_gen_exit_tb(const TranslationBlock *tb, unsigned idx) { uintptr_t val = (uintptr_t)tb + idx; |