Skip to content

Commit

Permalink
added missing "f" flag to jump target in asm blocks
Browse files Browse the repository at this point in the history
(This sometimes prevents builds on Darwin, but is apparently
universally incorrect.  I just work here.)
  • Loading branch information
Ben Byer authored and Jeremy Huddleston committed Nov 19, 2007
1 parent b79ecab commit 21f35c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fb/fbpict.c
Expand Up @@ -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"
Expand Down Expand Up @@ -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"
Expand Down

0 comments on commit 21f35c1

Please sign in to comment.