xref: /csrg-svn/sys/tahoe/align/Asubd.c (revision 29639)
1*29639Ssam /*	Asubd.c	1.1	86/07/20	*/
2*29639Ssam 
3*29639Ssam #include "../tahoealign/align.h"
4*29639Ssam subd(infop)	process_info *infop;
5*29639Ssam /*
6*29639Ssam /*	Subtract operand from accumulator to accumulator (double).
7*29639Ssam /*
8*29639Ssam /*******************************************************************/
9*29639Ssam {
10*29639Ssam 	register double 	*operand_pnt;
11*29639Ssam 	register double		*acc_pnt;
12*29639Ssam 
13*29639Ssam 	operand_pnt = (double *)&operand(infop,0)->data;
14*29639Ssam 	acc_pnt = (double *) &acc_high;
15*29639Ssam 	*acc_pnt = *acc_pnt - *operand_pnt;
16*29639Ssam }
17