]> git.proxmox.com Git - qemu.git/commitdiff
suppressed unused function
authorbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>
Wed, 7 Jul 2004 22:04:21 +0000 (22:04 +0000)
committerbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>
Wed, 7 Jul 2004 22:04:21 +0000 (22:04 +0000)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@986 c046a42c-6fe2-441c-8c8c-71466251a162

target-ppc/cpu.h

index 122ec994651903711bb7abd9c1dc1e55bc76ad3a..99ed1bd7ab705a9db0e293429f65a9d0c553fa9e 100644 (file)
@@ -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>