Hi,

Here's what I got building gnumach from CVS:

/home/src/gnu/gnumach/linux/src/arch/i386/lib/delay.c: In function `__delay':
/home/src/gnu/gnumach/linux/src/arch/i386/lib/delay.c:23: invalid punctuation `;' in 
constraint
/home/src/gnu/gnumach/linux/src/arch/i386/lib/delay.c: In function `__const_udelay':
/home/src/gnu/gnumach/linux/src/arch/i386/lib/delay.c:36: invalid punctuation `;' in 
constraint

Here is the fix:

Index: linux/src/arch/i386/lib/delay.c
===================================================================
RCS file: /cvsroot/hurd/gnumach/linux/src/arch/i386/lib/delay.c,v
retrieving revision 1.1
diff -u -r1.1 delay.c
--- linux/src/arch/i386/lib/delay.c     2000/07/27 16:48:04     1.1
+++ linux/src/arch/i386/lib/delay.c     2001/10/21 14:22:49
@@ -26,7 +26,7 @@
                "1:\tjmp 2f\n"
                ".align 16\n"
                "2:\tdecl %0\n\tjns 2b"
-               :"=&a" (d0)
+               :"=&a" (d0)
                :"0" (loops));
 }
 
@@ -34,7 +34,7 @@
 {
        int d0;
        __asm__("mull %0"
-               :"=d" (xloops), "=&a" (d0)
+               :"=d" (xloops), "=&a" (d0)
                :"1" (xloops),"0" (loops_per_sec));
         __delay(xloops);
 }

Regards,
-John

-- 
John Tobey <[EMAIL PROTECTED]>
Take a minute for the defense of freedom:
http://www.indefenseoffreedom.org/

_______________________________________________
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd

Reply via email to