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:
parent
cc7a872fec
commit
366686b891
1 changed files with 1 additions and 1 deletions
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue