diff options
author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2024-12-12 15:38:34 +0100 |
---|---|---|
committer | Philippe Mathieu-Daudé <philmd@linaro.org> | 2024-12-20 17:44:57 +0100 |
commit | 8865049bab9957eb5b027d3e53bd05316817ea07 (patch) | |
tree | f54952444222ec2387deee3c6e6d892b17865b2c /include/exec/cpu-common.h | |
parent | 1760c5cce8301c4a4f007c793c872a8f16439326 (diff) | |
download | qemu-8865049bab9957eb5b027d3e53bd05316817ea07.zip qemu-8865049bab9957eb5b027d3e53bd05316817ea07.tar.gz qemu-8865049bab9957eb5b027d3e53bd05316817ea07.tar.bz2 |
accel/tcg: Move tcg_cflags_has/set() to 'exec/translation-block.h'
The TranslationBlock flags are defined in 'exec/translation-block.h'.
tcg_cflags_has/set() use them, it is more logical to declare them in
the same place. Move them there too.
Suggested-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20241212144430.66224-2-philmd@linaro.org>
Diffstat (limited to 'include/exec/cpu-common.h')
-rw-r--r-- | include/exec/cpu-common.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/exec/cpu-common.h b/include/exec/cpu-common.h index 74e947f..b1d76d6 100644 --- a/include/exec/cpu-common.h +++ b/include/exec/cpu-common.h @@ -188,9 +188,6 @@ void list_cpus(void); #ifdef CONFIG_TCG #include "qemu/atomic.h" -bool tcg_cflags_has(CPUState *cpu, uint32_t flags); -void tcg_cflags_set(CPUState *cpu, uint32_t flags); - /** * cpu_unwind_state_data: * @cpu: the cpu context |