summaryrefslogtreecommitdiff
path: root/sys/arch/hppa/spmath/mpyscv.c
diff options
context:
space:
mode:
authorMichael Shalayeff <mickey@cvs.openbsd.org>2003-04-10 17:28:00 +0000
committerMichael Shalayeff <mickey@cvs.openbsd.org>2003-04-10 17:28:00 +0000
commitb296e783cae122b728eacdbc12edf907a1b80e34 (patch)
tree4c31745831bcaaca5e5f57ac3cff495094639ba9 /sys/arch/hppa/spmath/mpyscv.c
parent5259dba13104372bdbaf233024b553268314c556 (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/mpyscv.c')
-rw-r--r--sys/arch/hppa/spmath/mpyscv.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/hppa/spmath/mpyscv.c b/sys/arch/hppa/spmath/mpyscv.c
index 12a95c44ccc..7f7ea4e6bb1 100644
--- a/sys/arch/hppa/spmath/mpyscv.c
+++ b/sys/arch/hppa/spmath/mpyscv.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: mpyscv.c,v 1.6 2002/05/07 22:19:30 mickey Exp $ */
+/* $OpenBSD: mpyscv.c,v 1.7 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"
@@ -21,6 +21,6 @@ mpyscv(opnd1,opnd2,result)
int opnd1, opnd2;
struct mdsfu_register *result;
{
- impys(&opnd1,&opnd2,result);
+ s_xmpy(&opnd1,&opnd2,result);
overflow = FALSE;
}