Commit 9f879620 authored by Diego Biurrun's avatar Diego Biurrun

Fix illegal identifier, __ are reserved for the system.

Originally committed as revision 15771 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 1a220bcd
...@@ -77,9 +77,9 @@ static inline av_const int64_t MAC64(int64_t d, int a, int b) ...@@ -77,9 +77,9 @@ static inline av_const int64_t MAC64(int64_t d, int a, int b)
__asm__ ("smlabb %0, %2, %3, %0" : "=r" (rt) : "0" (rt), "r" (ra), "r" (rb)); __asm__ ("smlabb %0, %2, %3, %0" : "=r" (rt) : "0" (rt), "r" (ra), "r" (rb));
/* signed 16x16 -> 32 multiply */ /* signed 16x16 -> 32 multiply */
# define MUL16(ra, rb) \ # define MUL16(ra, rb) \
({ int __rt; \ ({ int rt; \
__asm__ ("smulbb %0, %1, %2" : "=r" (__rt) : "r" (ra), "r" (rb)); \ __asm__ ("smulbb %0, %1, %2" : "=r" (rt) : "r" (ra), "r" (rb)); \
__rt; }) rt; })
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment