]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
Fixed some ARM embedded assembly language typos
authorSteve Underwood <steveu@coppice.org>
Mon, 5 May 2014 00:33:55 +0000 (08:33 +0800)
committerSteve Underwood <steveu@coppice.org>
Mon, 5 May 2014 00:33:55 +0000 (08:33 +0800)
libs/spandsp/src/spandsp/saturated.h

index db9baf4f4bd596b298981d9c47e79b9ef454afbe..4cc61a81d5a83180a13a97274470ebf68b10dc10 100644 (file)
@@ -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));