Skip to content
Snippets Groups Projects
Unverified Commit 787532b9 authored by Nick Terrell's avatar Nick Terrell Committed by GitHub
Browse files

Merge pull request #1418 from ryandesign/cpuid-i386

Fix i386 build failure "Junk character 13"
parents f15f1bfe ef4df0df
No related branches found
No related tags found
No related merge requests found
......@@ -78,7 +78,7 @@ MEM_STATIC ZSTD_cpuid_t ZSTD_cpuid(void) {
__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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment