diff options
author | imp <imp@cvs.openbsd.org> | 1996-09-23 21:27:54 +0000 |
---|---|---|
committer | imp <imp@cvs.openbsd.org> | 1996-09-23 21:27:54 +0000 |
commit | c6f91b18056ab0ffe674a1aee43ef4bf4c3e276e (patch) | |
tree | 19c94e97639af89b3772651c9b9706bf5ec91184 /lib/libc | |
parent | 669e4bfaa06db933b932b6aa9cb10a65160ea544 (diff) |
Minor warning about unterminated constant fixed
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/arch/mips/gen/_setjmp.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/arch/mips/gen/_setjmp.S b/lib/libc/arch/mips/gen/_setjmp.S index 74b7d7cfc14..b4c8f31e90b 100644 --- a/lib/libc/arch/mips/gen/_setjmp.S +++ b/lib/libc/arch/mips/gen/_setjmp.S @@ -39,7 +39,7 @@ #if defined(LIBC_SCCS) .text - .asciz "$OpenBSD: _setjmp.S,v 1.5 1996/08/19 08:15:51 tholo Exp $" + .asciz "$OpenBSD: _setjmp.S,v 1.6 1996/09/23 21:27:53 imp Exp $" #endif /* LIBC_SCCS */ /* @@ -96,7 +96,7 @@ LEAF(_longjmp) lw ra, (2 * 4)(a0) bne v0, 0xACEDBADE, botch # jump if error - addu sp, sp, 32 # don't matter, sanity + addu sp, sp, 32 # does not matter, sanity lw s0, ((S0 + 3) * 4)(a0) lw s1, ((S1 + 3) * 4)(a0) lw s2, ((S2 + 3) * 4)(a0) |