diff options
author | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-10-09 03:39:58 +0000 |
---|---|---|
committer | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-10-09 03:39:58 +0000 |
commit | aa3437359864a40e37ab0ddb221f243c3c952b14 (patch) | |
tree | 3ea3b8f3757b8102c4aa79d4d0e4f8426b3ea776 /target-mips/op.c | |
parent | 6dab28d5b5bfa67bef724efac0bc051a69ff1339 (diff) | |
download | qemu-aa3437359864a40e37ab0ddb221f243c3c952b14.zip |
Use always_inline in the MIPS support where applicable.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3375 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-mips/op.c')
-rw-r--r-- | target-mips/op.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target-mips/op.c b/target-mips/op.c index 4290970523..3aefec2491 100644 --- a/target-mips/op.c +++ b/target-mips/op.c @@ -812,13 +812,13 @@ void op_msubu (void) #else /* TARGET_LONG_BITS > HOST_LONG_BITS */ -static inline uint64_t get_HILO (void) +static always_inline uint64_t get_HILO (void) { return ((uint64_t)env->HI[0][env->current_tc] << 32) | ((uint64_t)(uint32_t)env->LO[0][env->current_tc]); } -static inline void set_HILO (uint64_t HILO) +static always_inline void set_HILO (uint64_t HILO) { env->LO[0][env->current_tc] = (int32_t)(HILO & 0xFFFFFFFF); env->HI[0][env->current_tc] = (int32_t)(HILO >> 32); |