Commit e02aa6869e31385381ebadd8770895d8d5b8b3a4

Authored by bellard
1 parent 7db4eea6

suppressed unused function


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@986 c046a42c-6fe2-441c-8c8c-71466251a162
Showing 1 changed file with 0 additions and 9 deletions
target-ppc/cpu.h
@@ -43,15 +43,6 @@ static inline int32_t s_ext16 (uint16_t value) @@ -43,15 +43,6 @@ static inline int32_t s_ext16 (uint16_t value)
43 return *tmp; 43 return *tmp;
44 } 44 }
45 45
46 -/* 24 to 32 bits */  
47 -static inline int32_t s_ext24 (uint32_t value)  
48 -{  
49 - uint16_t utmp = (value >> 8) & 0xFFFF;  
50 - int16_t *tmp = &utmp;  
51 -  
52 - return (*tmp << 8) | (value & 0xFF);  
53 -}  
54 -  
55 #include "config.h" 46 #include "config.h"
56 #include <setjmp.h> 47 #include <setjmp.h>
57 48