Skip to content
Snippets Groups Projects
Commit e02aa686 authored by Fabrice Bellard's avatar Fabrice Bellard
Browse files

suppressed unused function

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@986 c046a42c-6fe2-441c-8c8c-71466251a162
parent 7db4eea6
No related branches found
No related tags found
No related merge requests found
......@@ -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>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment