summaryrefslogtreecommitdiff
path: root/lib/libstand
diff options
context:
space:
mode:
authorPeter Wemm <peter@FreeBSD.org>1999-11-24 13:54:46 +0000
committerPeter Wemm <peter@FreeBSD.org>1999-11-24 13:54:46 +0000
commit0fbac2a6c57d739e6b4c6fa69966f5620474ddb6 (patch)
tree8c5e0d3de1701450e20381465c96354d8d4e473d /lib/libstand
parentdc11d19429f2ae8083b45195d4fc528ce945a86e (diff)
Notes
Diffstat (limited to 'lib/libstand')
-rw-r--r--lib/libstand/alpha/_setjmp.S9
1 files changed, 1 insertions, 8 deletions
diff --git a/lib/libstand/alpha/_setjmp.S b/lib/libstand/alpha/_setjmp.S
index 2aa8c55a5ee7..96be5ec5dfef 100644
--- a/lib/libstand/alpha/_setjmp.S
+++ b/lib/libstand/alpha/_setjmp.S
@@ -1,4 +1,5 @@
/* $NetBSD: _setjmp.S,v 1.2 1996/10/17 03:08:03 cgd Exp $ */
+/* $FreeBSD$ */
/*
* Copyright (c) 1994, 1995 Carnegie-Mellon University.
@@ -87,10 +88,6 @@ END(_setjmp)
LEAF(_longjmp, 2)
LDGP(pv)
- ldq t0, ((31 + 4) * 8)(a0) /* magic in sc_regs[31] */
- ldiq t1, 0xacedbadd
- cmpeq t0, t1, t0
- beq t0, botch /* If the magic was bad, punt */
ldq ra, (2 * 8)(a0) /* sc_pc = return address */
ldq s0, (( 9 + 4) * 8)(a0) /* saved bits of sc_regs */
@@ -116,8 +113,4 @@ LEAF(_longjmp, 2)
mov a1, v0 /* return second arg */
RET
-botch:
- CALL(longjmperror)
- CALL(abort)
- RET /* "can't" get here... */
END(_longjmp)