Deleted Added
full compact
_setjmp.S (129202) _setjmp.S (137287)
1/* $NetBSD: _setjmp.S,v 1.5 2003/04/05 23:08:51 bjh21 Exp $ */
2
3/*
4 * Copyright (c) 1997 Mark Brinicombe
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions

--- 19 unchanged lines hidden (view full) ---

28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * SUCH DAMAGE.
33 */
34
35#include <machine/asm.h>
1/* $NetBSD: _setjmp.S,v 1.5 2003/04/05 23:08:51 bjh21 Exp $ */
2
3/*
4 * Copyright (c) 1997 Mark Brinicombe
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions

--- 19 unchanged lines hidden (view full) ---

28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * SUCH DAMAGE.
33 */
34
35#include <machine/asm.h>
36__FBSDID("$FreeBSD: head/lib/libc/arm/gen/_setjmp.S 129202 2004-05-14 12:04:31Z cognet $");
37#define SOFTFLOAT /* XXX */
36__FBSDID("$FreeBSD: head/lib/libc/arm/gen/_setjmp.S 137287 2004-11-05 23:53:54Z cognet $");
37
38/*
39 * C library -- _setjmp, _longjmp
40 *
41 * _longjmp(a,v)
42 * will generate a "return(v)" from the last call to
43 * _setjmp(a)
44 * by restoring registers from the stack.
45 * The previous signal state is NOT restored.

--- 60 unchanged lines hidden ---
38/*
39 * C library -- _setjmp, _longjmp
40 *
41 * _longjmp(a,v)
42 * will generate a "return(v)" from the last call to
43 * _setjmp(a)
44 * by restoring registers from the stack.
45 * The previous signal state is NOT restored.

--- 60 unchanged lines hidden ---