diff options
author | 2002-10-21 20:14:57 +0000 | |
---|---|---|
committer | 2002-10-21 20:14:57 +0000 | |
commit | f06eeefa7844054563fdd1565f0bda6d92a765df (patch) | |
tree | 3ed5d9cd638a96a68d712526e08cfcf62d22127d | |
parent | deal w/ longjmp(, 0) (diff) | |
download | wireguard-openbsd-f06eeefa7844054563fdd1565f0bda6d92a765df.tar.xz wireguard-openbsd-f06eeefa7844054563fdd1565f0bda6d92a765df.zip |
reversed condition checking for sig*jmp(, savemask)
-rw-r--r-- | lib/libc/arch/hppa/gen/setjmp.S | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libc/arch/hppa/gen/setjmp.S b/lib/libc/arch/hppa/gen/setjmp.S index 973d420d192..942ab686153 100644 --- a/lib/libc/arch/hppa/gen/setjmp.S +++ b/lib/libc/arch/hppa/gen/setjmp.S @@ -1,4 +1,4 @@ -/* $OpenBSD: setjmp.S,v 1.4 2002/10/21 20:00:30 mickey Exp $ */ +/* $OpenBSD: setjmp.S,v 1.5 2002/10/21 20:14:57 mickey Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. @@ -44,7 +44,7 @@ #if defined(LIBC_SCCS) && !defined(lint) .text - .asciz "$OpenBSD: setjmp.S,v 1.4 2002/10/21 20:00:30 mickey Exp $" + .asciz "$OpenBSD: setjmp.S,v 1.5 2002/10/21 20:14:57 mickey Exp $" .align 4 #endif /* LIBC_SCCS and not lint */ @@ -60,7 +60,7 @@ */ ENTRY(sigsetjmp, 64) - sub,= %r0, %arg1, %r0 + sub,<> %r0, %arg1, %r0 b,n _setjmp nop @@ -133,7 +133,7 @@ ENTRY(siglongjmp,64) nop ldw 44(%arg0), %arg2 - sub,= %r0, %arg2, %r0 + sub,<> %r0, %arg2, %r0 b _longjmp nop |