summaryrefslogtreecommitdiff
path: root/vpx_ports
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2021-12-02 13:11:56 -0800
committerJames Zern <jzern@google.com>2021-12-02 16:53:20 -0800
commit31b954debe62026f957e9a13354c8c75b12e537a (patch)
treee803b50c646bf50f23f7c3b863d08375739c2ae0 /vpx_ports
parent13f984c2162d8392d3fd0ffb8666ee518f60665a (diff)
downloadlibvpx-31b954debe62026f957e9a13354c8c75b12e537a.tar
libvpx-31b954debe62026f957e9a13354c8c75b12e537a.tar.gz
libvpx-31b954debe62026f957e9a13354c8c75b12e537a.tar.bz2
libvpx-31b954debe62026f957e9a13354c8c75b12e537a.zip
clear -Wextra-semi/-Wextra-semi-stmt warnings
Bug: chromium:1257449 Change-Id: Ia9aafccc09b611521d4a7aedfe3723393a840c62
Diffstat (limited to 'vpx_ports')
-rw-r--r--vpx_ports/x86.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/vpx_ports/x86.h b/vpx_ports/x86.h
index 651ff6460..795fb2923 100644
--- a/vpx_ports/x86.h
+++ b/vpx_ports/x86.h
@@ -47,7 +47,7 @@ typedef enum {
#define cpuid(func, func2, ax, bx, cx, dx) \
__asm__ __volatile__("cpuid \n\t" \
: "=a"(ax), "=b"(bx), "=c"(cx), "=d"(dx) \
- : "a"(func), "c"(func2));
+ : "a"(func), "c"(func2))
#else
#define cpuid(func, func2, ax, bx, cx, dx) \
__asm__ __volatile__( \
@@ -55,7 +55,7 @@ typedef enum {
"cpuid \n\t" \
"xchg %%edi, %%ebx \n\t" \
: "=a"(ax), "=D"(bx), "=c"(cx), "=d"(dx) \
- : "a"(func), "c"(func2));
+ : "a"(func), "c"(func2))
#endif
#elif defined(__SUNPRO_C) || \
defined(__SUNPRO_CC) /* end __GNUC__ or __ANDROID__*/
@@ -67,7 +67,7 @@ typedef enum {
"movl %ebx, %edi \n\t" \
"xchg %rsi, %rbx \n\t" \
: "=a"(ax), "=D"(bx), "=c"(cx), "=d"(dx) \
- : "a"(func), "c"(func2));
+ : "a"(func), "c"(func2))
#else
#define cpuid(func, func2, ax, bx, cx, dx) \
asm volatile( \
@@ -76,7 +76,7 @@ typedef enum {
"movl %ebx, %edi \n\t" \
"popl %ebx \n\t" \
: "=a"(ax), "=D"(bx), "=c"(cx), "=d"(dx) \
- : "a"(func), "c"(func2));
+ : "a"(func), "c"(func2))
#endif
#else /* end __SUNPRO__ */
#if VPX_ARCH_X86_64