Remove leftover backslash from macro conversion in FRACTMUL_SHL

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30094 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Thomas Jarosch 2011-06-28 21:16:39 +00:00
parent cc7a872fec
commit 366686b891

View file

@ -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"