diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2002-02-04 23:04:19 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2002-02-04 23:04:19 +0000 |
commit | 9a4bfc8344ac6d3d6c31f8b61baf67df0f9fcf00 (patch) | |
tree | 24dd26944254fb0433e59d80c16b4646439e814b /sys/arch/hppa/spmath | |
parent | 750b98c924bfd4439d78749ec1209cbe055c19be (diff) |
missing LEAF_ENTRY()
Diffstat (limited to 'sys/arch/hppa/spmath')
-rw-r--r-- | sys/arch/hppa/spmath/impyu.S | 16 |
1 files changed, 5 insertions, 11 deletions
diff --git a/sys/arch/hppa/spmath/impyu.S b/sys/arch/hppa/spmath/impyu.S index 1fec205e28f..623d47513dd 100644 --- a/sys/arch/hppa/spmath/impyu.S +++ b/sys/arch/hppa/spmath/impyu.S @@ -1,4 +1,4 @@ -/* $OpenBSD: impyu.S,v 1.5 2001/03/29 03:58:18 mickey Exp $ */ +/* $OpenBSD: impyu.S,v 1.6 2002/02/04 23:04:18 mickey Exp $ */ /* * Copyright 1996 1995 by Open Software Foundation, Inc. @@ -66,15 +66,8 @@ pc .equ 9 ; carry bit of product, = 00...01 pm .equ 10 ; value of -1 used in shifting temp .equ 6 -;**************************************************************************** - .export impyu,entry - .text - .align 4 - .proc - .callinfo -; -;**************************************************************************** -impyu stws,ma pu,4(sp) ; save registers on stack +LEAF_ENTRY(impyu) + stws,ma pu,4(sp) ; save registers on stack stws,ma pl,4(sp) ; save registers on stack stws,ma op1,4(sp) ; save registers on stack stws,ma cnt,4(sp) ; save registers on stack @@ -314,5 +307,6 @@ fini stws pu,0(arg2) ; save high part of result bv 0(rp) ; return ldws,mb -4(sp),pu ; restore registers - .procend +EXIT(impyu) + .end |