mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 23:33:54 -06:00
Use plain standard inline.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4929 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
0eaef5aa01
commit
c904ef0e7c
2 changed files with 11 additions and 11 deletions
|
@ -47,15 +47,15 @@ void cpu_mips_update_irq (CPUState *env);
|
|||
void cpu_mips_clock_init (CPUState *env);
|
||||
void cpu_mips_tlb_flush (CPUState *env, int flush_global);
|
||||
|
||||
static always_inline void env_to_regs(void)
|
||||
static inline void env_to_regs(void)
|
||||
{
|
||||
}
|
||||
|
||||
static always_inline void regs_to_env(void)
|
||||
static inline void regs_to_env(void)
|
||||
{
|
||||
}
|
||||
|
||||
static always_inline int cpu_halted(CPUState *env)
|
||||
static inline int cpu_halted(CPUState *env)
|
||||
{
|
||||
if (!env->halted)
|
||||
return 0;
|
||||
|
@ -67,7 +67,7 @@ static always_inline int cpu_halted(CPUState *env)
|
|||
return EXCP_HALTED;
|
||||
}
|
||||
|
||||
static always_inline void compute_hflags(CPUState *env)
|
||||
static inline void compute_hflags(CPUState *env)
|
||||
{
|
||||
env->hflags &= ~(MIPS_HFLAG_COP1X | MIPS_HFLAG_64 | MIPS_HFLAG_CP0 |
|
||||
MIPS_HFLAG_F64 | MIPS_HFLAG_FPU | MIPS_HFLAG_KSU);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue