diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2003-04-10 17:28:00 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2003-04-10 17:28:00 +0000 |
commit | b296e783cae122b728eacdbc12edf907a1b80e34 (patch) | |
tree | 4c31745831bcaaca5e5f57ac3cff495094639ba9 /sys/arch/hppa/spmath/impys.S | |
parent | 5259dba13104372bdbaf233024b553268314c556 (diff) |
make all entry points of the same number of arguments and that greatly simplifies the call setup in the scheduler
Diffstat (limited to 'sys/arch/hppa/spmath/impys.S')
-rw-r--r-- | sys/arch/hppa/spmath/impys.S | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/hppa/spmath/impys.S b/sys/arch/hppa/spmath/impys.S index 9aae344e650..1acad9f4b1a 100644 --- a/sys/arch/hppa/spmath/impys.S +++ b/sys/arch/hppa/spmath/impys.S @@ -1,4 +1,4 @@ -/* $OpenBSD: impys.S,v 1.9 2003/01/23 20:25:21 mickey Exp $ */ +/* $OpenBSD: impys.S,v 1.10 2003/04/10 17:27:58 mickey Exp $ */ /* (c) Copyright 1986 HEWLETT-PACKARD COMPANY To anyone who acknowledges that this file is provided "AS IS" @@ -44,7 +44,7 @@ pm .equ 10 ; value of -1 used in shifting ;***************************************************************************** .text -LEAF_ENTRY(impys) +LEAF_ENTRY(s_xmpy) 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 @@ -287,6 +287,6 @@ fini stws pu,0(arg2) ; save high part of result ldws,mb -4(sp),pl ; restore registers bv 0(rp) ; return ldws,mb -4(sp),pu ; restore registers -EXIT(imyps) +EXIT(s_xmpy) .end |