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.tar.gz
rockbox-366686b8917e245b517a04be43e5895502c57328.zip
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 5dbe4f9ef5..624b5de794 100644
--- a/apps/fracmul.h
+++ b/apps/fracmul.h
@@ -75,7 +75,7 @@ static inline int32_t FRACMUL(int32_t x, int32_t y)
75 */ 75 */
76static inline int32_t FRACMUL_SHL(int32_t x, int32_t y, int z) 76static inline int32_t FRACMUL_SHL(int32_t x, int32_t y, int z)
77{ 77{
78 int32_t t, t2; \ 78 int32_t t, t2;
79 asm ("smull %[t], %[t2], %[a], %[b]\n\t" 79 asm ("smull %[t], %[t2], %[a], %[b]\n\t"
80 "mov %[t2], %[t2], asl %[c]\n\t" 80 "mov %[t2], %[t2], asl %[c]\n\t"
81 "orr %[t], %[t2], %[t], lsr %[d]\n\t" 81 "orr %[t], %[t2], %[t], lsr %[d]\n\t"