diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-01-04 10:13:15 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-04 10:13:15 +0100 |
commit | bdbcf29246bad902e94c3a5fb1fd1abb06aeb2ae (patch) | |
tree | c85c2c9a80d04e338cf39d0fed3fdba2d0291b29 /thirdparty/zstd/common/cpu.h | |
parent | b1e3215f3a316cfaf518747f7dafba4cc0d8d291 (diff) | |
parent | e64391f47bf95ab4cdb65683623979ee6790836e (diff) |
Merge pull request #24754 from guilhermefelipecgs/fix_17374
Update zstd to 1.3.8
Diffstat (limited to 'thirdparty/zstd/common/cpu.h')
-rw-r--r-- | thirdparty/zstd/common/cpu.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/thirdparty/zstd/common/cpu.h b/thirdparty/zstd/common/cpu.h index a109520a33..5f0923fc92 100644 --- a/thirdparty/zstd/common/cpu.h +++ b/thirdparty/zstd/common/cpu.h @@ -72,14 +72,13 @@ MEM_STATIC ZSTD_cpuid_t ZSTD_cpuid(void) { "cpuid\n\t" "popl %%ebx\n\t" : "=a"(f1a), "=c"(f1c), "=d"(f1d) - : "a"(1) - :); + : "a"(1)); } if (n >= 7) { __asm__( "pushl %%ebx\n\t" "cpuid\n\t" - "movl %%ebx, %%eax\n\r" + "movl %%ebx, %%eax\n\t" "popl %%ebx" : "=a"(f7b), "=c"(f7c) : "a"(7), "c"(0) |