diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2024-10-10 10:36:41 +0200 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2024-10-13 10:04:29 -0700 |
commit | fe678c45d2c970ab35826c6ff3ae08f20bf02f73 (patch) | |
tree | 0138463c4ece7a0b038340228b39f308c22d7eb0 /include/exec/translator.h | |
parent | 7e3b6d8063f245d27eecce5aabe624b5785f2a77 (diff) | |
download | qemu-fe678c45d2c970ab35826c6ff3ae08f20bf02f73.zip qemu-fe678c45d2c970ab35826c6ff3ae08f20bf02f73.tar.gz qemu-fe678c45d2c970ab35826c6ff3ae08f20bf02f73.tar.bz2 |
tcg: remove singlestep_enabled from DisasContextBase
It is used in a couple of places only, both within the same target.
Those can use the cflags just as well, so remove the separate field.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Message-ID: <20241010083641.1785069-1-pbonzini@redhat.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'include/exec/translator.h')
-rw-r--r-- | include/exec/translator.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/exec/translator.h b/include/exec/translator.h index 25004df..d8dcb77 100644 --- a/include/exec/translator.h +++ b/include/exec/translator.h @@ -71,7 +71,6 @@ typedef enum DisasJumpType { * @is_jmp: What instruction to disassemble next. * @num_insns: Number of translated instructions (including current). * @max_insns: Maximum number of instructions to be translated in this TB. - * @singlestep_enabled: "Hardware" single stepping enabled. * @plugin_enabled: TCG plugin enabled in this TB. * @fake_insn: True if translator_fake_ldb used. * @insn_start: The last op emitted by the insn_start hook, @@ -86,7 +85,6 @@ struct DisasContextBase { DisasJumpType is_jmp; int num_insns; int max_insns; - bool singlestep_enabled; bool plugin_enabled; bool fake_insn; struct TCGOp *insn_start; |