summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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"