ack/modules/src/flt_arith/flt_ar2flt.c

38 lines
632 B
C
Raw Normal View History

1989-07-10 11:17:19 +00:00
/*
(c) copyright 1988 by the Vrije Universiteit, Amsterdam, The Netherlands.
See the copyright notice in the ACK home directory, in the file "Copyright".
*/
1994-06-24 11:31:16 +00:00
/* $Id$ */
1989-07-10 11:17:19 +00:00
1991-02-19 13:53:04 +00:00
#include "flt_misc.h"
1989-07-10 11:17:19 +00:00
#include <em_arith.h>
void flt_arith2flt(arith n, flt_arith *e, int uns)
1989-07-10 11:17:19 +00:00
{
/* Convert the arith "n" to a flt_arith "e".
*/
if (!uns && n < 0) {
1989-07-10 11:17:19 +00:00
e->flt_sign = 1;
n = -n;
}
else e->flt_sign = 0;
1991-03-11 14:38:28 +00:00
if (sizeof(arith) == 4) {
1991-10-02 15:20:22 +00:00
e->m1 = 0; e->m2 = n;
1991-06-26 17:26:59 +00:00
}
else {
/* assuming sizeof(arith) >= 8 */
e->m1 = n >> 32;
e->m2 = n;
1991-02-26 15:46:18 +00:00
}
1989-10-19 14:50:52 +00:00
if (n == 0) {
e->flt_exp = 0;
return;
}
e->flt_exp = 63;
1989-07-10 11:17:19 +00:00
flt_status = 0;
flt_nrm(e);
}