mirror of https://gitee.com/openkylin/qemu.git
suppressed unused function
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@986 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
7db4eea691
commit
e02aa6869e
|
@ -43,15 +43,6 @@ static inline int32_t s_ext16 (uint16_t value)
|
|||
return *tmp;
|
||||
}
|
||||
|
||||
/* 24 to 32 bits */
|
||||
static inline int32_t s_ext24 (uint32_t value)
|
||||
{
|
||||
uint16_t utmp = (value >> 8) & 0xFFFF;
|
||||
int16_t *tmp = &utmp;
|
||||
|
||||
return (*tmp << 8) | (value & 0xFF);
|
||||
}
|
||||
|
||||
#include "config.h"
|
||||
#include <setjmp.h>
|
||||
|
||||
|
|
Loading…
Reference in New Issue