From 29ea8e9979bd2737af4d6cdcb9d5e42bcd423cb2 Mon Sep 17 00:00:00 2001 From: Steve Underwood Date: Mon, 5 May 2014 08:33:55 +0800 Subject: [PATCH] Fixed some ARM embedded assembly language typos --- libs/spandsp/src/spandsp/saturated.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/spandsp/src/spandsp/saturated.h b/libs/spandsp/src/spandsp/saturated.h index db9baf4f4b..4cc61a81d5 100644 --- a/libs/spandsp/src/spandsp/saturated.h +++ b/libs/spandsp/src/spandsp/saturated.h @@ -219,7 +219,7 @@ static __inline__ int16_t sat_add16(int16_t x, int16_t y) int16_t z; __asm__ __volatile__( - " qadd16 %[z],%[c],%[y];\n" + " qadd16 %[z],%[x],%[y];\n" : [z] "=r" (z) : [x] "r" (x), [y] "r" (y) ); @@ -330,7 +330,7 @@ static __inline__ int16_t sat_mul16(int16_t x, int16_t y) int32_t z; #if defined(__GNUC__) && (defined(__ARM_ARCH_6__) || defined(__ARM_ARCH_7A__)) - __asm__ __volatile__(" smulbb %[z],%[c],%[y];\n" + __asm__ __volatile__(" smulbb %[z],%[x],%[y];\n" " qadd %[z],%[z],%[z];\n" : [z] "=r" (z) : [x] "r" (x), [y] "r" (y));