summaryrefslogtreecommitdiff
path: root/libavcodec/ppc/mathops.h
diff options
context:
space:
mode:
Diffstat (limited to 'libavcodec/ppc/mathops.h')
-rw-r--r--libavcodec/ppc/mathops.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/ppc/mathops.h b/libavcodec/ppc/mathops.h
index d7cc85365f..82abadcba8 100644
--- a/libavcodec/ppc/mathops.h
+++ b/libavcodec/ppc/mathops.h
@@ -30,8 +30,8 @@
/* signed 16x16 -> 32 multiply */
# define MUL16(ra, rb) \
- ({ int __rt;
- asm ("mullhw %0, %1, %2" : "=r" (__rt) : "r" (ra), "r" (rb));
+ ({ int __rt; \
+ asm ("mullhw %0, %1, %2" : "=r" (__rt) : "r" (ra), "r" (rb)); \
__rt; })
#endif