Skip to content

Commit 7045055

Browse files
Jean-Baptiste QueruAndroid Git Automerger
authored andcommitted
am 14c6e27: am 2accfc1: am d6a2515: Merge "stagefright aacenc: Fix an inline asm constraint"
* commit '14c6e2728c2ae39aab6fc9a9a77c402d7322afc0': stagefright aacenc: Fix an inline asm constraint
2 parents 78fc0c0 + 14c6e27 commit 7045055

File tree

1 file changed

+1
-1
lines changed
  • media/libstagefright/codecs/aacenc/basic_op

1 file changed

+1
-1
lines changed

media/libstagefright/codecs/aacenc/basic_op/oper_32b.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ __inline Word32 L_mpy_wx(Word32 L_var2, Word16 var1)
6363
Word32 result;
6464
asm volatile(
6565
"SMULWB %[result], %[L_var2], %[var1] \n"
66-
:[result]"+r"(result)
66+
:[result]"=r"(result)
6767
:[L_var2]"r"(L_var2), [var1]"r"(var1)
6868
);
6969
return result;

0 commit comments

Comments
 (0)