diff options
author | j_mayer <j_mayer@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-10-28 00:56:24 +0000 |
---|---|---|
committer | j_mayer <j_mayer@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-10-28 00:56:24 +0000 |
commit | f071b4d3ca5e83d332948a970a646437747b70ba (patch) | |
tree | 5169eb83ce42bb1147eef9958e34477b7a8de4c1 /target-alpha/exec.h | |
parent | a11b8151dfc71f95ac04e5f73c7d5c042911b9e4 (diff) |
Alpha coding style and inlining fixes.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3462 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-alpha/exec.h')
-rw-r--r-- | target-alpha/exec.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/target-alpha/exec.h b/target-alpha/exec.h index 62cd07dcf8..3b9754d831 100644 --- a/target-alpha/exec.h +++ b/target-alpha/exec.h @@ -64,11 +64,11 @@ register uint64_t T2 asm(AREG3); #include "softmmu_exec.h" #endif /* !defined(CONFIG_USER_ONLY) */ -static inline void env_to_regs(void) +static always_inline void env_to_regs(void) { } -static inline void regs_to_env(void) +static always_inline void regs_to_env(void) { } @@ -79,7 +79,7 @@ int cpu_alpha_mtpr (CPUState *env, int iprn, uint64_t val, uint64_t *oldvalp); void do_interrupt (CPUState *env); -static inline int cpu_halted(CPUState *env) { +static always_inline int cpu_halted(CPUState *env) { if (!env->halted) return 0; if (env->interrupt_request & CPU_INTERRUPT_HARD) { |