diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2004-07-07 22:04:21 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2004-07-07 22:04:21 +0000 |
commit | e02aa6869e31385381ebadd8770895d8d5b8b3a4 (patch) | |
tree | 7c47797d8a090b623f5a5ac605160e72b7b9d783 /target-ppc | |
parent | 7db4eea691f9368c33346064a9c46663d140938d (diff) |
suppressed unused function
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@986 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-ppc')
-rw-r--r-- | target-ppc/cpu.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/target-ppc/cpu.h b/target-ppc/cpu.h index 122ec99465..99ed1bd7ab 100644 --- a/target-ppc/cpu.h +++ b/target-ppc/cpu.h @@ -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> |