diff options
author | Tobias Weingartner <weingart@cvs.openbsd.org> | 1997-09-17 17:23:39 +0000 |
---|---|---|
committer | Tobias Weingartner <weingart@cvs.openbsd.org> | 1997-09-17 17:23:39 +0000 |
commit | 0fcf2372afd2a5c231e5ff939c61d213c7e9e338 (patch) | |
tree | fd876c7a76897cb6c9065b47c7bb898b0f4a50e5 | |
parent | a6d2dffc6c29271bdca77cb23d4936a5f23e05af (diff) |
Pointers are not signed.
-rw-r--r-- | lib/libc/arch/i386/sys/brk.S | 6 |
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: |