summaryrefslogtreecommitdiffstats
path: root/lib/libc/arch
diff options
context:
space:
mode:
authorweingart <weingart@openbsd.org>1997-09-17 17:23:38 +0000
committerweingart <weingart@openbsd.org>1997-09-17 17:23:38 +0000
commit8b562fc1d12cca23f6493f7849bca51d77fcd9c9 (patch)
tree3b31e5c1a2924e4629249820a79c0b16fe31954f /lib/libc/arch
parentuse special ftp (diff)
downloadwireguard-openbsd-8b562fc1d12cca23f6493f7849bca51d77fcd9c9.tar.xz
wireguard-openbsd-8b562fc1d12cca23f6493f7849bca51d77fcd9c9.zip
Pointers are not signed.
Diffstat (limited to 'lib/libc/arch')
-rw-r--r--lib/libc/arch/i386/sys/brk.S6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/arch/i386/sys/brk.S b/lib/libc/arch/i386/sys/brk.S
index 0fc35867f38..3f316823f07 100644
--- a/lib/libc/arch/i386/sys/brk.S
+++ b/lib/libc/arch/i386/sys/brk.S
@@ -38,7 +38,7 @@
#if defined(SYSLIBC_SCCS)
.text
- .asciz "$OpenBSD: brk.S,v 1.2 1996/08/19 08:13:28 tholo Exp $"
+ .asciz "$OpenBSD: brk.S,v 1.3 1997/09/17 17:23:38 weingart Exp $"
#endif /* SYSLIB_SCCS */
.globl _end
@@ -56,7 +56,7 @@ ENTRY(brk)
movl PIC_GOT(minbrk),%edx
PIC_EPILOGUE
cmpl %ecx,(%edx)
- jl 1f
+ jb 1f
movl (%edx),%ecx
movl %ecx,4(%esp)
1:
@@ -76,7 +76,7 @@ err:
movl 4(%esp),%ecx
cmpl %ecx,minbrk
- jl 1f
+ jb 1f
movl minbrk,%ecx
movl %ecx,4(%esp)
1: