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/cnv_float.h | |
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/cnv_float.h')
-rw-r--r-- | sys/arch/hppa/spmath/cnv_float.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/sys/arch/hppa/spmath/cnv_float.h b/sys/arch/hppa/spmath/cnv_float.h index 561e257246f..739fb714050 100644 --- a/sys/arch/hppa/spmath/cnv_float.h +++ b/sys/arch/hppa/spmath/cnv_float.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cnv_float.h,v 1.8 2002/09/20 19:26:59 mickey Exp $ */ +/* $OpenBSD: cnv_float.h,v 1.9 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" @@ -296,17 +296,17 @@ else position -= 2; \ } -int sgl_to_sgl_fcnvfx(sgl_floating_point *, sgl_floating_point *, unsigned int *); -int sgl_to_dbl_fcnvfx(sgl_floating_point *, dbl_integer *, unsigned int *); -int dbl_to_sgl_fcnvfx(dbl_floating_point *, int *, unsigned int *); -int dbl_to_dbl_fcnvfx(dbl_floating_point *, dbl_integer *, unsigned int *); +int sgl_to_sgl_fcnvfx(sgl_floating_point *, sgl_floating_point *, sgl_floating_point *, unsigned int *); +int sgl_to_dbl_fcnvfx(sgl_floating_point *, sgl_floating_point *, dbl_integer *, unsigned int *); +int dbl_to_sgl_fcnvfx(dbl_floating_point *, dbl_floating_point *, int *, unsigned int *); +int dbl_to_dbl_fcnvfx(dbl_floating_point *, dbl_floating_point *, dbl_integer *, unsigned int *); -int sgl_to_sgl_fcnvfxt(sgl_floating_point *, int *, unsigned int *); -int sgl_to_dbl_fcnvfxt(sgl_floating_point *, dbl_integer *, unsigned int *); -int dbl_to_sgl_fcnvfxt(dbl_floating_point *, int *, unsigned int *); -int dbl_to_dbl_fcnvfxt(dbl_floating_point *, dbl_integer *, unsigned int *); +int sgl_to_sgl_fcnvfxt(sgl_floating_point *, sgl_floating_point *, int *, unsigned int *); +int sgl_to_dbl_fcnvfxt(sgl_floating_point *, sgl_floating_point *, dbl_integer *, unsigned int *); +int dbl_to_sgl_fcnvfxt(dbl_floating_point *, dbl_floating_point *, int *, unsigned int *); +int dbl_to_dbl_fcnvfxt(dbl_floating_point *, dbl_floating_point *, dbl_integer *, unsigned int *); -int sgl_to_sgl_fcnvxf(int *, sgl_floating_point *, unsigned int *); -int sgl_to_dbl_fcnvxf(int *, dbl_floating_point *, unsigned int *); -int dbl_to_sgl_fcnvxf(dbl_integer *, sgl_floating_point *, unsigned int *); -int dbl_to_dbl_fcnvxf(dbl_integer *, dbl_floating_point *, unsigned int *); +int sgl_to_sgl_fcnvxf(int *, int *, sgl_floating_point *, unsigned int *); +int sgl_to_dbl_fcnvxf(int *, int *, dbl_floating_point *, unsigned int *); +int dbl_to_sgl_fcnvxf(dbl_integer *, dbl_integer *, sgl_floating_point *, unsigned int *); +int dbl_to_dbl_fcnvxf(dbl_integer *, dbl_integer *, dbl_floating_point *, unsigned int *); |