diff options
author | 2003-04-10 17:27:58 +0000 | |
---|---|---|
committer | 2003-04-10 17:27:58 +0000 | |
commit | 7eec34da5ce3d990cd99bf62b82bcd810afc1ed3 (patch) | |
tree | 60ac82d0326e9a40ae7808f0cf297b2d167182a7 /sys/arch/hppa/spmath/mpyaccu.c | |
parent | deallocate resources on failures; pt out by tedu@; millert@ ok (diff) | |
download | wireguard-openbsd-7eec34da5ce3d990cd99bf62b82bcd810afc1ed3.tar.xz wireguard-openbsd-7eec34da5ce3d990cd99bf62b82bcd810afc1ed3.zip |
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/mpyaccu.c')
-rw-r--r-- | sys/arch/hppa/spmath/mpyaccu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/hppa/spmath/mpyaccu.c b/sys/arch/hppa/spmath/mpyaccu.c index 9c5c6b2b79f..7e5d3d4ac06 100644 --- a/sys/arch/hppa/spmath/mpyaccu.c +++ b/sys/arch/hppa/spmath/mpyaccu.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mpyaccu.c,v 1.6 2002/05/07 22:19:30 mickey Exp $ */ +/* $OpenBSD: mpyaccu.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" @@ -24,7 +24,7 @@ mpyaccu(opnd1,opnd2,result) struct mdsfu_register temp; int carry; - impyu(&opnd1,&opnd2,&temp); + u_xmpy(&opnd1,&opnd2,&temp); /* get result of low word add, and check for carry out */ if ((result_lo += (unsigned)temp.rslt_lo) < (unsigned)temp.rslt_lo) |