From 70ac57b95b84aed377cd9105c39c7b1a6967139e Mon Sep 17 00:00:00 2001 From: Michael Giacomelli Date: Tue, 16 Mar 2010 04:47:24 +0000 Subject: Change various CPU_ARM defines to _ARM_ASSEM_ to be more consistent with the rest of Tremor. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25214 a1c6a512-1295-4272-9138-f99709370657 --- apps/codecs/libtremor/codebook.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'apps/codecs/libtremor/codebook.c') diff --git a/apps/codecs/libtremor/codebook.c b/apps/codecs/libtremor/codebook.c index 8d34b6d..ad817fc 100644 --- a/apps/codecs/libtremor/codebook.c +++ b/apps/codecs/libtremor/codebook.c @@ -143,7 +143,7 @@ int vorbis_staticbook_unpack(oggpack_buffer *opb,static_codebook *s){ static inline ogg_uint32_t bitreverse(register ogg_uint32_t x) { unsigned tmp, ret; -#ifdef CPU_ARM +#ifdef _ARM_ASSEM_ #if ARM_ARCH >= 6 unsigned mask = 0x0f0f0f0f; #else @@ -191,7 +191,7 @@ static inline ogg_uint32_t bitreverse(register ogg_uint32_t x) : /* inputs */ [x]"r"(x) ); -#else /* !CPU_ARM */ +#else /* !_ARM_ASSEM_ */ #ifdef CPU_COLDFIRE ret = x; @@ -211,7 +211,7 @@ static inline ogg_uint32_t bitreverse(register ogg_uint32_t x) tmp = ret & 0x55555555; ret ^= tmp; ret = (ret >> 1) | (tmp << 1); /* done */ -#endif /* !CPU_ARM */ +#endif /* !_ARM_ASSEM_ */ return ret; } -- cgit v1.1