From a2c82e32833840e169e5505b144caf91393f3e31 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A9=20van=20Geldorp?= Date: Mon, 10 May 2004 11:13:15 +0000 Subject: [PATCH] Avoid collision with compiler generated label svn path=/trunk/; revision=9342 --- reactos/hal/halx86/timer.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/reactos/hal/halx86/timer.c b/reactos/hal/halx86/timer.c index 3bb7c436e8e..05255bebaca 100644 --- a/reactos/hal/halx86/timer.c +++ b/reactos/hal/halx86/timer.c @@ -20,7 +20,7 @@ * MA 02139, USA. * */ -/* $Id: timer.c,v 1.3 2004/01/12 22:36:04 gvg Exp $ +/* $Id: timer.c,v 1.4 2004/05/10 11:13:15 gvg Exp $ * * PROJECT: ReactOS kernel * FILE: ntoskrnl/hal/x86/udelay.c @@ -109,14 +109,14 @@ __KeStallExecutionProcessor(ULONG Loops) #if defined(__GNUC__) __asm__ __volatile__ ( "mov %0, %%eax\n" - "L1: dec %%eax\n" - "jnz L1" : : "d" (Loops)); + "ROSL1: dec %%eax\n" + "jnz ROSL1" : : "d" (Loops)); #elif defined(_MSC_VER) __asm mov eax, Loops -L1: +ROSL1: __asm dec eax - __asm jnz L1 + __asm jnz ROSL1 #else volatile unsigned int target = Loops; unsigned int i;