Update of /cvsroot/linux-vax/kernel-2.4/arch/vax/lib
In directory usw-pr-cvs1:/tmp/cvs-serv3581/arch/vax/lib
Modified Files:
clear_user.S
Log Message:
DA: typo .. wrong reg...
Index: clear_user.S
===================================================================
RCS file: /cvsroot/linux-vax/kernel-2.4/arch/vax/lib/clear_user.S,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- clear_user.S 2001/03/14 22:36:58 1.2
+++ clear_user.S 2001/05/20 20:37:55 1.3
@@ -23,7 +23,7 @@
ENTRY(__clear_user)
.word 0x3e
movl 4(ap), r1 /* r1 now has addr */
- movl 8(ap), r1 /* r0 has size */
+ movl 8(ap), r0 /* r0 has size */
beql 2f
1: EX(movb, (r1)+, 0, fault)
sobgtr r0, 1b
|