diff options
author | 2011-07-08 21:11:20 +0000 | |
---|---|---|
committer | 2011-07-08 21:11:20 +0000 | |
commit | 79f573e42a8e82829f1158b38fb9f8d392313b65 (patch) | |
tree | 9c2c162489edf528fe4c3fbff8e38f788cdc8ddd | |
parent | no reason to zero pages we are about to mark dirty (diff) | |
download | wireguard-openbsd-79f573e42a8e82829f1158b38fb9f8d392313b65.tar.xz wireguard-openbsd-79f573e42a8e82829f1158b38fb9f8d392313b65.zip |
Remove useless labels from copyin and copyout.
Noticed by matthew@, `go for it' guenther@.
-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 |