diff options
| author | Richard Henderson <richard.henderson@linaro.org> | 2025-04-27 15:15:14 -0700 |
|---|---|---|
| committer | Richard Henderson <richard.henderson@linaro.org> | 2025-04-30 12:45:05 -0700 |
| commit | a59a876999344be426144a3e6d163885220c1e93 (patch) | |
| tree | 5846cb20752f1b0366cc41278107b76a55abe006 /target/sparc | |
| parent | c2d5897d3b712402d9543570c550a40cc0836522 (diff) | |
| download | focaccia-qemu-a59a876999344be426144a3e6d163885220c1e93.tar.gz focaccia-qemu-a59a876999344be426144a3e6d163885220c1e93.zip | |
accel/tcg: Hoist cpu_get_tb_cpu_state decl to accl/tcg/cpu-ops.h
For some targets, simply remove the local definition. For other targets, move the inline definition out of line. Reviewed-by: Pierrick Bouvier <pierrick.bouvier@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'target/sparc')
| -rw-r--r-- | target/sparc/cpu.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/target/sparc/cpu.h b/target/sparc/cpu.h index 37fd1e066e..31cb3d97eb 100644 --- a/target/sparc/cpu.h +++ b/target/sparc/cpu.h @@ -741,9 +741,6 @@ trap_state* cpu_tsptr(CPUSPARCState* env); #define TB_FLAG_FSR_QNE (1 << 8) #define TB_FLAG_ASI_SHIFT 24 -void cpu_get_tb_cpu_state(CPUSPARCState *env, vaddr *pc, - uint64_t *cs_base, uint32_t *pflags); - static inline bool tb_fpu_enabled(int tb_flags) { #if defined(CONFIG_USER_ONLY) |