mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 07:43:54 -06:00
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
This commit is contained in:
parent
6dab28d5b5
commit
aa34373598
4 changed files with 28 additions and 28 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue