summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Jarosch <tomj@simonv.com>2011-06-28 21:16:39 +0000
committerThomas Jarosch <tomj@simonv.com>2011-06-28 21:16:39 +0000
commit366686b8917e245b517a04be43e5895502c57328 (patch)
treed31a1f17ab4a3ea356c60a66501f4d585f7a8c40
parentcc7a872fec6f828929e9b86dfc226e2eed3db42c (diff)
downloadrockbox-366686b8917e245b517a04be43e5895502c57328.zip
rockbox-366686b8917e245b517a04be43e5895502c57328.tar.gz
rockbox-366686b8917e245b517a04be43e5895502c57328.tar.bz2
rockbox-366686b8917e245b517a04be43e5895502c57328.tar.xz
Remove leftover backslash from macro conversion in FRACTMUL_SHL
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30094 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/fracmul.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/fracmul.h b/apps/fracmul.h
index 5dbe4f9..624b5de 100644
--- a/apps/fracmul.h
+++ b/apps/fracmul.h
@@ -75,7 +75,7 @@ static inline int32_t FRACMUL(int32_t x, int32_t y)
*/
static inline int32_t FRACMUL_SHL(int32_t x, int32_t y, int z)
{
- int32_t t, t2; \
+ int32_t t, t2;
asm ("smull %[t], %[t2], %[a], %[b]\n\t"
"mov %[t2], %[t2], asl %[c]\n\t"
"orr %[t], %[t2], %[t], lsr %[d]\n\t"