diff options
| author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2023-11-29 16:55:37 +0100 |
|---|---|---|
| committer | Philippe Mathieu-Daudé <philmd@linaro.org> | 2025-03-06 15:46:17 +0100 |
| commit | de5a43192b55b5744ed7ec0e263d4d208c834617 (patch) | |
| tree | b47879dc39d8bb58a402bdc406c74e4b66e254e1 /hw/core/cpu-common.c | |
| parent | e92a883ffee93a8b811992b92b8a31ed54400c13 (diff) | |
| download | focaccia-qemu-de5a43192b55b5744ed7ec0e263d4d208c834617.tar.gz focaccia-qemu-de5a43192b55b5744ed7ec0e263d4d208c834617.zip | |
accel/tcg: Remove pointless initialization of cflags_next_tb
cflags_next_tb is always re-initialized in the CPU Reset() handler in cpu_common_reset_hold(), no need to initialize it in cpu_common_initfn(). Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20240427155714.53669-13-philmd@linaro.org>
Diffstat (limited to 'hw/core/cpu-common.c')
| -rw-r--r-- | hw/core/cpu-common.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/hw/core/cpu-common.c b/hw/core/cpu-common.c index 71425cb742..d5cd227fe6 100644 --- a/hw/core/cpu-common.c +++ b/hw/core/cpu-common.c @@ -249,7 +249,6 @@ static void cpu_common_initfn(Object *obj) /* user-mode doesn't have configurable SMP topology */ /* the default value is changed by qemu_init_vcpu() for system-mode */ cpu->nr_threads = 1; - cpu->cflags_next_tb = -1; /* allocate storage for thread info, initialise condition variables */ cpu->thread = g_new0(QemuThread, 1); |