From: James S. <jsi...@us...> - 2001-10-05 17:07:16
|
Update of /cvsroot/linux-mips/linux/arch/mips/kernel In directory usw-pr-cvs1:/tmp/cvs-serv28836/mips/kernel Modified Files: old-time.c time.c Log Message: Nuke more clobbers. Index: old-time.c =================================================================== RCS file: /cvsroot/linux-mips/linux/arch/mips/kernel/old-time.c,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- old-time.c 2001/08/22 18:19:17 1.4 +++ old-time.c 2001/10/05 17:07:14 1.5 @@ -89,8 +89,7 @@ :"r" (timerhi), "m" (timerlo), "r" (tmp), - "r" (USECS_PER_JIFFY) - :"$1"); + "r" (USECS_PER_JIFFY)); cached_quotient = quotient; } Index: time.c =================================================================== RCS file: /cvsroot/linux-mips/linux/arch/mips/kernel/time.c,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- time.c 2001/09/07 18:21:54 1.8 +++ time.c 2001/10/05 17:07:14 1.9 @@ -255,8 +255,7 @@ :"r" (timerhi), "m" (timerlo), "r" (tmp), - "r" (USECS_PER_JIFFY) - :"$1"); + "r" (USECS_PER_JIFFY)); cached_quotient = quotient; } |