diff options
Diffstat (limited to 'sys/arch/hppa/spmath/mpyaccs.c')
-rw-r--r-- | sys/arch/hppa/spmath/mpyaccs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/hppa/spmath/mpyaccs.c b/sys/arch/hppa/spmath/mpyaccs.c index f6c37fa47c2..65c7e9ed1e1 100644 --- a/sys/arch/hppa/spmath/mpyaccs.c +++ b/sys/arch/hppa/spmath/mpyaccs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mpyaccs.c,v 1.5 2002/05/07 22:19:30 mickey Exp $ */ +/* $OpenBSD: mpyaccs.c,v 1.6 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 @@ mpyaccs(opnd1,opnd2,result) struct mdsfu_register temp; int carry, sign; - impys(&opnd1,&opnd2,&temp); + s_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) |