From: Glauber Costa Date: Tue, 24 Jun 2008 12:27:19 +0000 (-0300) Subject: x86: don't use size specifiers. X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=ff1b15b646177c6cc465ac2dd0be6ae16e965654;p=deliverable%2Flinux.git x86: don't use size specifiers. Remove the "l" from inline asm at arch/x86/lib/delay_32.c. It is not needed. Signed-off-by: Glauber Costa Signed-off-by: H. Peter Anvin Signed-off-by: Ingo Molnar --- diff --git a/arch/x86/lib/delay_32.c b/arch/x86/lib/delay_32.c index ef691316f8b6..54013f87d956 100644 --- a/arch/x86/lib/delay_32.c +++ b/arch/x86/lib/delay_32.c @@ -38,9 +38,9 @@ static void delay_loop(unsigned long loops) "1: jmp 2f \n" ".align 16 \n" - "2: decl %0 \n" + "2: dec %0 \n" " jnz 2b \n" - "3: decl %0 \n" + "3: dec %0 \n" : /* we don't need output */ :"a" (loops)