diff options
author | Paul Irofti <pirofti@cvs.openbsd.org> | 2011-07-08 21:11:21 +0000 |
---|---|---|
committer | Paul Irofti <pirofti@cvs.openbsd.org> | 2011-07-08 21:11:21 +0000 |
commit | b79efb32670cb265a51bdf337b48be5595df0209 (patch) | |
tree | db822efebd1b6f715425f8d694dce1bc6d46769a /sys/arch | |
parent | 20fa854463717f669224e76528973f2f52ad5319 (diff) |
Remove useless labels from copyin and copyout.
Noticed by matthew@, `go for it' guenther@.
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/i386/i386/locore.s | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/i386/i386/locore.s b/sys/arch/i386/i386/locore.s index a4c62c072c4..73d8fb3f534 100644 --- a/sys/arch/i386/i386/locore.s +++ b/sys/arch/i386/i386/locore.s @@ -1,4 +1,4 @@ -/* $OpenBSD: locore.s,v 1.137 2011/07/05 00:30:10 deraadt Exp $ */ +/* $OpenBSD: locore.s,v 1.138 2011/07/08 21:11:20 pirofti Exp $ */ /* $NetBSD: locore.s,v 1.145 1996/05/03 19:41:19 christos Exp $ */ /*- @@ -836,7 +836,7 @@ ENTRY(copyout) cmpl $VM_MAXUSER_ADDRESS,%edx ja _C_LABEL(copy_fault) -3: GET_CURPCB(%edx) + GET_CURPCB(%edx) movl $_C_LABEL(copy_fault),PCB_ONFAULT(%edx) /* bcopy(%esi, %edi, %eax); */ @@ -889,7 +889,7 @@ ENTRY(copyin) cmpl $VM_MAXUSER_ADDRESS,%edx ja _C_LABEL(copy_fault) -3: /* bcopy(%esi, %edi, %eax); */ + /* bcopy(%esi, %edi, %eax); */ cld movl %eax,%ecx shrl $2,%ecx |