summaryrefslogtreecommitdiffstats
path: root/target/tricore
diff options
context:
space:
mode:
authorRichard Henderson2020-10-29 20:30:01 +0100
committerRichard Henderson2021-01-07 16:09:41 +0100
commit04a37d4ca4bfef595b2e9bec99eac8bfc806c76b (patch)
treebbfa000533efff43d45ad1946b97a0d647b016cc /target/tricore
parenttcg: Make DisasContextBase.tb const (diff)
downloadqemu-04a37d4ca4bfef595b2e9bec99eac8bfc806c76b.tar.gz
qemu-04a37d4ca4bfef595b2e9bec99eac8bfc806c76b.tar.xz
qemu-04a37d4ca4bfef595b2e9bec99eac8bfc806c76b.zip
tcg: Make tb arg to synchronize_from_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 'target/tricore')
-rw-r--r--target/tricore/cpu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/target/tricore/cpu.c b/target/tricore/cpu.c
index 2f2e5b029f..4bff1d4718 100644
--- a/target/tricore/cpu.c
+++ b/target/tricore/cpu.c
@@ -42,7 +42,7 @@ static void tricore_cpu_set_pc(CPUState *cs, vaddr value)
}
static void tricore_cpu_synchronize_from_tb(CPUState *cs,
- TranslationBlock *tb)
+ const TranslationBlock *tb)
{
TriCoreCPU *cpu = TRICORE_CPU(cs);
CPUTriCoreState *env = &cpu->env;