From 21f35c1b7c209312bc5df84787b0aa03154f1768 Mon Sep 17 00:00:00 2001 From: Ben Byer Date: Sat, 27 Oct 2007 04:17:29 -0700 Subject: [PATCH] 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.) --- fb/fbpict.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fb/fbpict.c b/fb/fbpict.c index 38afbea5c..613e652e9 100644 --- a/fb/fbpict.c +++ b/fb/fbpict.c @@ -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"