Update of /cvsroot/linux-mips/linux/arch/mips/au1000/common
In directory usw-pr-cvs1:/tmp/cvs-serv22616
Modified Files:
time.c
Log Message:
Nuke more clobbers.
Index: time.c
===================================================================
RCS file: /cvsroot/linux-mips/linux/arch/mips/au1000/common/time.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- time.c 2001/09/12 21:31:06 1.7
+++ time.c 2001/10/05 16:52:35 1.8
@@ -324,7 +324,8 @@
"mfhi\t%0"
:"=r" (res)
:"r" (count),
- "r" (quotient));
+ "r" (quotient)
+ :"$1");
/*
* Due to possible jiffies inconsistencies, we need to check
|