Skip to content

Commit 126d0ce

Browse files
Jean-Baptiste QueruAndroid Git Automerger
authored andcommitted
am 7045055: am 14c6e27: am 2accfc1: am d6a2515: Merge "stagefright aacenc: Fix an inline asm constraint"
* commit '70450553f8f1e6ec4967f86a4b811db2940e8772': stagefright aacenc: Fix an inline asm constraint
2 parents 0f7f115 + 7045055 commit 126d0ce

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)