mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2026-04-30 23:48:02 +02:00
added missing "f" flag to jump target in asm blocks
(This sometimes prevents builds on Darwin, but is apparently universally incorrect. I just work here.)
This commit is contained in:
parent
de4fe33c71
commit
67fe8339fa
1 changed files with 2 additions and 2 deletions
|
|
@ -1443,7 +1443,7 @@ static unsigned int detectCPUFeatures(void) {
|
|||
"pop %%eax\n"
|
||||
"mov $0x0, %%edx\n"
|
||||
"xor %%ecx, %%eax\n"
|
||||
"jz 1\n"
|
||||
"jz 1f\n"
|
||||
|
||||
"mov $0x00000000, %%eax\n"
|
||||
"push %%ebx\n"
|
||||
|
|
@ -1486,7 +1486,7 @@ static unsigned int detectCPUFeatures(void) {
|
|||
"cpuid\n"
|
||||
"xor %%edx, %%edx\n"
|
||||
"cmp $0x1, %%eax\n"
|
||||
"jge 2\n"
|
||||
"jge 2f\n"
|
||||
"mov $0x80000001, %%eax\n"
|
||||
"cpuid\n"
|
||||
"2:\n"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue