[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 25/31] target/loongarch: Constify loongarch_tcg_ops
From: |
Richard Henderson |
Subject: |
[PULL 25/31] target/loongarch: Constify loongarch_tcg_ops |
Date: |
Tue, 30 Jan 2024 09:01:15 +1000 |
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
target/loongarch/cpu.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/target/loongarch/cpu.c b/target/loongarch/cpu.c
index dd3e46a726..fb8dde7def 100644
--- a/target/loongarch/cpu.c
+++ b/target/loongarch/cpu.c
@@ -734,7 +734,7 @@ void loongarch_cpu_dump_state(CPUState *cs, FILE *f, int
flags)
#ifdef CONFIG_TCG
#include "hw/core/tcg-cpu-ops.h"
-static TCGCPUOps loongarch_tcg_ops = {
+static const TCGCPUOps loongarch_tcg_ops = {
.initialize = loongarch_translate_init,
.synchronize_from_tb = loongarch_cpu_synchronize_from_tb,
.restore_state_to_opc = loongarch_restore_state_to_opc,
--
2.34.1
- Re: [PULL 13/31] tests/tcg: Add the PROT_NONE gdbstub test, (continued)
- [PULL 11/31] linux-user: Allow gdbstub to ignore page protection, Richard Henderson, 2024/01/29
- [PULL 14/31] accel/tcg/cpu-exec: Use RCU_READ_LOCK_GUARD, Richard Henderson, 2024/01/29
- [PULL 15/31] target: Make qemu_target_page_mask() available for *-user, Richard Henderson, 2024/01/29
- [PULL 16/31] accel/tcg: Make use of qemu_target_page_mask() in perf.c, Richard Henderson, 2024/01/29
- [PULL 17/31] tcg: Make tb_cflags() usable from target-agnostic code, Richard Henderson, 2024/01/29
- [PULL 19/31] accel/tcg: Move perf and debuginfo support to tcg/, Richard Henderson, 2024/01/29
- [PULL 21/31] accel/tcg: Rename tcg_cpus_destroy() -> tcg_cpu_destroy(), Richard Henderson, 2024/01/29
- [PULL 18/31] accel/tcg: Remove #ifdef TARGET_I386 from perf.c, Richard Henderson, 2024/01/29
- [PULL 20/31] accel/tcg: Rename tcg_ss[] -> tcg_specific_ss[] in meson, Richard Henderson, 2024/01/29
- [PULL 25/31] target/loongarch: Constify loongarch_tcg_ops,
Richard Henderson <=
- [PULL 28/31] target/i386: Extract x86_need_replay_interrupt() from accel/tcg/, Richard Henderson, 2024/01/29
- [PULL 22/31] accel/tcg: Rename tcg_cpus_exec() -> tcg_cpu_exec(), Richard Henderson, 2024/01/29
- [PULL 29/31] accel/tcg: Inline need_replay_interrupt, Richard Henderson, 2024/01/29
- [PULL 24/31] include/qemu: Add TCGCPUOps typedef to typedefs.h, Richard Henderson, 2024/01/29
- [PULL 23/31] accel/tcg: Un-inline icount_exit_request() for clarity, Richard Henderson, 2024/01/29
- [PULL 31/31] target/i386: Extract x86_cpu_exec_halt() from accel/tcg/, Richard Henderson, 2024/01/29
- [PULL 30/31] accel/tcg: Introduce TCGCPUOps::cpu_exec_halt() handler, Richard Henderson, 2024/01/29
- [PULL 26/31] accel/tcg: Use CPUState.cc instead of CPU_GET_CLASS in cpu-exec.c, Richard Henderson, 2024/01/29
- [PULL 27/31] accel/tcg: Introduce TCGCPUOps::need_replay_interrupt() handler, Richard Henderson, 2024/01/29
- Re: [PULL 00/31] tcg patch queue, Peter Maydell, 2024/01/31