Revision 636aa200 target-ppc/exec.h

b/target-ppc/exec.h
35 35
#include "softmmu_exec.h"
36 36
#endif /* !defined(CONFIG_USER_ONLY) */
37 37

  
38
static always_inline void env_to_regs (void)
38
static inline void env_to_regs(void)
39 39
{
40 40
}
41 41

  
42
static always_inline void regs_to_env (void)
42
static inline void regs_to_env(void)
43 43
{
44 44
}
45 45

  
46
static always_inline int cpu_has_work(CPUState *env)
46
static inline int cpu_has_work(CPUState *env)
47 47
{
48 48
    return (msr_ee && (env->interrupt_request & CPU_INTERRUPT_HARD));
49 49
}
50 50

  
51 51

  
52
static always_inline int cpu_halted (CPUState *env)
52
static inline int cpu_halted(CPUState *env)
53 53
{
54 54
    if (!env->halted)
55 55
        return 0;

Also available in: Unified diff