18c2ecf20Sopenharmony_ci|
28c2ecf20Sopenharmony_ci|	tbldo.sa 3.1 12/10/90
38c2ecf20Sopenharmony_ci|
48c2ecf20Sopenharmony_ci| Modified:
58c2ecf20Sopenharmony_ci|	8/16/90	chinds	The table was constructed to use only one level
68c2ecf20Sopenharmony_ci|			of indirection in do_func for monadic
78c2ecf20Sopenharmony_ci|			functions.  Dyadic functions require two
88c2ecf20Sopenharmony_ci|			levels, and the tables are still contained
98c2ecf20Sopenharmony_ci|			in do_func.  The table is arranged for
108c2ecf20Sopenharmony_ci|			index with a 10-bit index, with the first
118c2ecf20Sopenharmony_ci|			7 bits the opcode, and the remaining 3
128c2ecf20Sopenharmony_ci|			the stag.  For dyadic functions, all
138c2ecf20Sopenharmony_ci|			valid addresses are to the generic entry
148c2ecf20Sopenharmony_ci|			point.
158c2ecf20Sopenharmony_ci|
168c2ecf20Sopenharmony_ci
178c2ecf20Sopenharmony_ci|		Copyright (C) Motorola, Inc. 1990
188c2ecf20Sopenharmony_ci|			All Rights Reserved
198c2ecf20Sopenharmony_ci|
208c2ecf20Sopenharmony_ci|       For details on the license for this file, please see the
218c2ecf20Sopenharmony_ci|       file, README, in this same directory.
228c2ecf20Sopenharmony_ci
238c2ecf20Sopenharmony_ci|TBLDO	idnt    2,1 | Motorola 040 Floating Point Software Package
248c2ecf20Sopenharmony_ci
258c2ecf20Sopenharmony_ci	|section	8
268c2ecf20Sopenharmony_ci
278c2ecf20Sopenharmony_ci	|xref	ld_pinf,ld_pone,ld_ppi2
288c2ecf20Sopenharmony_ci	|xref	t_dz2,t_operr
298c2ecf20Sopenharmony_ci	|xref	serror,sone,szero,sinf,snzrinx
308c2ecf20Sopenharmony_ci	|xref	sopr_inf,spi_2,src_nan,szr_inf
318c2ecf20Sopenharmony_ci
328c2ecf20Sopenharmony_ci	|xref	smovcr
338c2ecf20Sopenharmony_ci	|xref	pmod,prem,pscale
348c2ecf20Sopenharmony_ci	|xref	satanh,satanhd
358c2ecf20Sopenharmony_ci	|xref	sacos,sacosd,sasin,sasind,satan,satand
368c2ecf20Sopenharmony_ci	|xref	setox,setoxd,setoxm1,setoxm1d,setoxm1i
378c2ecf20Sopenharmony_ci	|xref	sgetexp,sgetexpd,sgetman,sgetmand
388c2ecf20Sopenharmony_ci	|xref	sint,sintd,sintrz
398c2ecf20Sopenharmony_ci	|xref	ssincos,ssincosd,ssincosi,ssincosnan,ssincosz
408c2ecf20Sopenharmony_ci	|xref	scos,scosd,ssin,ssind,stan,stand
418c2ecf20Sopenharmony_ci	|xref	scosh,scoshd,ssinh,ssinhd,stanh,stanhd
428c2ecf20Sopenharmony_ci	|xref	sslog10,sslog2,sslogn,sslognp1
438c2ecf20Sopenharmony_ci	|xref	sslog10d,sslog2d,sslognd,slognp1d
448c2ecf20Sopenharmony_ci	|xref	stentox,stentoxd,stwotox,stwotoxd
458c2ecf20Sopenharmony_ci
468c2ecf20Sopenharmony_ci|	instruction		;opcode-stag Notes
478c2ecf20Sopenharmony_ci	.global	tblpre
488c2ecf20Sopenharmony_citblpre:
498c2ecf20Sopenharmony_ci	.long	smovcr		|$00-0 fmovecr all
508c2ecf20Sopenharmony_ci	.long	smovcr		|$00-1 fmovecr all
518c2ecf20Sopenharmony_ci	.long	smovcr		|$00-2 fmovecr all
528c2ecf20Sopenharmony_ci	.long	smovcr		|$00-3 fmovecr all
538c2ecf20Sopenharmony_ci	.long	smovcr		|$00-4 fmovecr all
548c2ecf20Sopenharmony_ci	.long	smovcr		|$00-5 fmovecr all
558c2ecf20Sopenharmony_ci	.long	smovcr		|$00-6 fmovecr all
568c2ecf20Sopenharmony_ci	.long	smovcr		|$00-7 fmovecr all
578c2ecf20Sopenharmony_ci
588c2ecf20Sopenharmony_ci	.long	sint		|$01-0 fint norm
598c2ecf20Sopenharmony_ci	.long	szero		|$01-1 fint zero
608c2ecf20Sopenharmony_ci	.long	sinf		|$01-2 fint inf
618c2ecf20Sopenharmony_ci	.long	src_nan		|$01-3 fint nan
628c2ecf20Sopenharmony_ci	.long	sintd		|$01-4 fint denorm inx
638c2ecf20Sopenharmony_ci	.long	serror		|$01-5 fint ERROR
648c2ecf20Sopenharmony_ci	.long	serror		|$01-6 fint ERROR
658c2ecf20Sopenharmony_ci	.long	serror		|$01-7 fint ERROR
668c2ecf20Sopenharmony_ci
678c2ecf20Sopenharmony_ci	.long	ssinh		|$02-0 fsinh norm
688c2ecf20Sopenharmony_ci	.long	szero		|$02-1 fsinh zero
698c2ecf20Sopenharmony_ci	.long	sinf		|$02-2 fsinh inf
708c2ecf20Sopenharmony_ci	.long	src_nan		|$02-3 fsinh nan
718c2ecf20Sopenharmony_ci	.long	ssinhd		|$02-4 fsinh denorm
728c2ecf20Sopenharmony_ci	.long	serror		|$02-5 fsinh ERROR
738c2ecf20Sopenharmony_ci	.long	serror		|$02-6 fsinh ERROR
748c2ecf20Sopenharmony_ci	.long	serror		|$02-7 fsinh ERROR
758c2ecf20Sopenharmony_ci
768c2ecf20Sopenharmony_ci	.long	sintrz		|$03-0 fintrz norm
778c2ecf20Sopenharmony_ci	.long	szero		|$03-1 fintrz zero
788c2ecf20Sopenharmony_ci	.long	sinf		|$03-2 fintrz inf
798c2ecf20Sopenharmony_ci	.long	src_nan		|$03-3 fintrz nan
808c2ecf20Sopenharmony_ci	.long	snzrinx		|$03-4 fintrz denorm inx
818c2ecf20Sopenharmony_ci	.long	serror		|$03-5 fintrz ERROR
828c2ecf20Sopenharmony_ci	.long	serror		|$03-6 fintrz ERROR
838c2ecf20Sopenharmony_ci	.long	serror		|$03-7 fintrz ERROR
848c2ecf20Sopenharmony_ci
858c2ecf20Sopenharmony_ci	.long	serror		|$04-0 ERROR - illegal extension
868c2ecf20Sopenharmony_ci	.long	serror		|$04-1 ERROR - illegal extension
878c2ecf20Sopenharmony_ci	.long	serror		|$04-2 ERROR - illegal extension
888c2ecf20Sopenharmony_ci	.long	serror		|$04-3 ERROR - illegal extension
898c2ecf20Sopenharmony_ci	.long	serror		|$04-4 ERROR - illegal extension
908c2ecf20Sopenharmony_ci	.long	serror		|$04-5 ERROR - illegal extension
918c2ecf20Sopenharmony_ci	.long	serror		|$04-6 ERROR - illegal extension
928c2ecf20Sopenharmony_ci	.long	serror		|$04-7 ERROR - illegal extension
938c2ecf20Sopenharmony_ci
948c2ecf20Sopenharmony_ci	.long	serror		|$05-0 ERROR - illegal extension
958c2ecf20Sopenharmony_ci	.long	serror		|$05-1 ERROR - illegal extension
968c2ecf20Sopenharmony_ci	.long	serror		|$05-2 ERROR - illegal extension
978c2ecf20Sopenharmony_ci	.long	serror		|$05-3 ERROR - illegal extension
988c2ecf20Sopenharmony_ci	.long	serror		|$05-4 ERROR - illegal extension
998c2ecf20Sopenharmony_ci	.long	serror		|$05-5 ERROR - illegal extension
1008c2ecf20Sopenharmony_ci	.long	serror		|$05-6 ERROR - illegal extension
1018c2ecf20Sopenharmony_ci	.long	serror		|$05-7 ERROR - illegal extension
1028c2ecf20Sopenharmony_ci
1038c2ecf20Sopenharmony_ci	.long	sslognp1	|$06-0 flognp1 norm
1048c2ecf20Sopenharmony_ci	.long	szero		|$06-1 flognp1 zero
1058c2ecf20Sopenharmony_ci	.long	sopr_inf	|$06-2 flognp1 inf
1068c2ecf20Sopenharmony_ci	.long	src_nan		|$06-3 flognp1 nan
1078c2ecf20Sopenharmony_ci	.long	slognp1d	|$06-4 flognp1 denorm
1088c2ecf20Sopenharmony_ci	.long	serror		|$06-5 flognp1 ERROR
1098c2ecf20Sopenharmony_ci	.long	serror		|$06-6 flognp1 ERROR
1108c2ecf20Sopenharmony_ci	.long	serror		|$06-7 flognp1 ERROR
1118c2ecf20Sopenharmony_ci
1128c2ecf20Sopenharmony_ci	.long	serror		|$07-0 ERROR - illegal extension
1138c2ecf20Sopenharmony_ci	.long	serror		|$07-1 ERROR - illegal extension
1148c2ecf20Sopenharmony_ci	.long	serror		|$07-2 ERROR - illegal extension
1158c2ecf20Sopenharmony_ci	.long	serror		|$07-3 ERROR - illegal extension
1168c2ecf20Sopenharmony_ci	.long	serror		|$07-4 ERROR - illegal extension
1178c2ecf20Sopenharmony_ci	.long	serror		|$07-5 ERROR - illegal extension
1188c2ecf20Sopenharmony_ci	.long	serror		|$07-6 ERROR - illegal extension
1198c2ecf20Sopenharmony_ci	.long	serror		|$07-7 ERROR - illegal extension
1208c2ecf20Sopenharmony_ci
1218c2ecf20Sopenharmony_ci	.long	setoxm1		|$08-0 fetoxm1 norm
1228c2ecf20Sopenharmony_ci	.long	szero		|$08-1 fetoxm1 zero
1238c2ecf20Sopenharmony_ci	.long	setoxm1i	|$08-2 fetoxm1 inf
1248c2ecf20Sopenharmony_ci	.long	src_nan		|$08-3 fetoxm1 nan
1258c2ecf20Sopenharmony_ci	.long	setoxm1d	|$08-4 fetoxm1 denorm
1268c2ecf20Sopenharmony_ci	.long	serror		|$08-5 fetoxm1 ERROR
1278c2ecf20Sopenharmony_ci	.long	serror		|$08-6 fetoxm1 ERROR
1288c2ecf20Sopenharmony_ci	.long	serror		|$08-7 fetoxm1 ERROR
1298c2ecf20Sopenharmony_ci
1308c2ecf20Sopenharmony_ci	.long	stanh		|$09-0 ftanh norm
1318c2ecf20Sopenharmony_ci	.long	szero		|$09-1 ftanh zero
1328c2ecf20Sopenharmony_ci	.long	sone		|$09-2 ftanh inf
1338c2ecf20Sopenharmony_ci	.long	src_nan		|$09-3 ftanh nan
1348c2ecf20Sopenharmony_ci	.long	stanhd		|$09-4 ftanh denorm
1358c2ecf20Sopenharmony_ci	.long	serror		|$09-5 ftanh ERROR
1368c2ecf20Sopenharmony_ci	.long	serror		|$09-6 ftanh ERROR
1378c2ecf20Sopenharmony_ci	.long	serror		|$09-7 ftanh ERROR
1388c2ecf20Sopenharmony_ci
1398c2ecf20Sopenharmony_ci	.long	satan		|$0a-0 fatan norm
1408c2ecf20Sopenharmony_ci	.long	szero		|$0a-1 fatan zero
1418c2ecf20Sopenharmony_ci	.long	spi_2		|$0a-2 fatan inf
1428c2ecf20Sopenharmony_ci	.long	src_nan		|$0a-3 fatan nan
1438c2ecf20Sopenharmony_ci	.long	satand		|$0a-4 fatan denorm
1448c2ecf20Sopenharmony_ci	.long	serror		|$0a-5 fatan ERROR
1458c2ecf20Sopenharmony_ci	.long	serror		|$0a-6 fatan ERROR
1468c2ecf20Sopenharmony_ci	.long	serror		|$0a-7 fatan ERROR
1478c2ecf20Sopenharmony_ci
1488c2ecf20Sopenharmony_ci	.long	serror		|$0b-0 ERROR - illegal extension
1498c2ecf20Sopenharmony_ci	.long	serror		|$0b-1 ERROR - illegal extension
1508c2ecf20Sopenharmony_ci	.long	serror		|$0b-2 ERROR - illegal extension
1518c2ecf20Sopenharmony_ci	.long	serror		|$0b-3 ERROR - illegal extension
1528c2ecf20Sopenharmony_ci	.long	serror		|$0b-4 ERROR - illegal extension
1538c2ecf20Sopenharmony_ci	.long	serror		|$0b-5 ERROR - illegal extension
1548c2ecf20Sopenharmony_ci	.long	serror		|$0b-6 ERROR - illegal extension
1558c2ecf20Sopenharmony_ci	.long	serror		|$0b-7 ERROR - illegal extension
1568c2ecf20Sopenharmony_ci
1578c2ecf20Sopenharmony_ci	.long	sasin		|$0c-0 fasin norm
1588c2ecf20Sopenharmony_ci	.long	szero		|$0c-1 fasin zero
1598c2ecf20Sopenharmony_ci	.long	t_operr		|$0c-2 fasin inf
1608c2ecf20Sopenharmony_ci	.long	src_nan		|$0c-3 fasin nan
1618c2ecf20Sopenharmony_ci	.long	sasind		|$0c-4 fasin denorm
1628c2ecf20Sopenharmony_ci	.long	serror		|$0c-5 fasin ERROR
1638c2ecf20Sopenharmony_ci	.long	serror		|$0c-6 fasin ERROR
1648c2ecf20Sopenharmony_ci	.long	serror		|$0c-7 fasin ERROR
1658c2ecf20Sopenharmony_ci
1668c2ecf20Sopenharmony_ci	.long	satanh		|$0d-0 fatanh norm
1678c2ecf20Sopenharmony_ci	.long	szero		|$0d-1 fatanh zero
1688c2ecf20Sopenharmony_ci	.long	t_operr		|$0d-2 fatanh inf
1698c2ecf20Sopenharmony_ci	.long	src_nan		|$0d-3 fatanh nan
1708c2ecf20Sopenharmony_ci	.long	satanhd		|$0d-4 fatanh denorm
1718c2ecf20Sopenharmony_ci	.long	serror		|$0d-5 fatanh ERROR
1728c2ecf20Sopenharmony_ci	.long	serror		|$0d-6 fatanh ERROR
1738c2ecf20Sopenharmony_ci	.long	serror		|$0d-7 fatanh ERROR
1748c2ecf20Sopenharmony_ci
1758c2ecf20Sopenharmony_ci	.long	ssin		|$0e-0 fsin norm
1768c2ecf20Sopenharmony_ci	.long	szero		|$0e-1 fsin zero
1778c2ecf20Sopenharmony_ci	.long	t_operr		|$0e-2 fsin inf
1788c2ecf20Sopenharmony_ci	.long	src_nan		|$0e-3 fsin nan
1798c2ecf20Sopenharmony_ci	.long	ssind		|$0e-4 fsin denorm
1808c2ecf20Sopenharmony_ci	.long	serror		|$0e-5 fsin ERROR
1818c2ecf20Sopenharmony_ci	.long	serror		|$0e-6 fsin ERROR
1828c2ecf20Sopenharmony_ci	.long	serror		|$0e-7 fsin ERROR
1838c2ecf20Sopenharmony_ci
1848c2ecf20Sopenharmony_ci	.long	stan		|$0f-0 ftan norm
1858c2ecf20Sopenharmony_ci	.long	szero		|$0f-1 ftan zero
1868c2ecf20Sopenharmony_ci	.long	t_operr		|$0f-2 ftan inf
1878c2ecf20Sopenharmony_ci	.long	src_nan		|$0f-3 ftan nan
1888c2ecf20Sopenharmony_ci	.long	stand		|$0f-4 ftan denorm
1898c2ecf20Sopenharmony_ci	.long	serror		|$0f-5 ftan ERROR
1908c2ecf20Sopenharmony_ci	.long	serror		|$0f-6 ftan ERROR
1918c2ecf20Sopenharmony_ci	.long	serror		|$0f-7 ftan ERROR
1928c2ecf20Sopenharmony_ci
1938c2ecf20Sopenharmony_ci	.long	setox		|$10-0 fetox norm
1948c2ecf20Sopenharmony_ci	.long	ld_pone		|$10-1 fetox zero
1958c2ecf20Sopenharmony_ci	.long	szr_inf		|$10-2 fetox inf
1968c2ecf20Sopenharmony_ci	.long	src_nan		|$10-3 fetox nan
1978c2ecf20Sopenharmony_ci	.long	setoxd		|$10-4 fetox denorm
1988c2ecf20Sopenharmony_ci	.long	serror		|$10-5 fetox ERROR
1998c2ecf20Sopenharmony_ci	.long	serror		|$10-6 fetox ERROR
2008c2ecf20Sopenharmony_ci	.long	serror		|$10-7 fetox ERROR
2018c2ecf20Sopenharmony_ci
2028c2ecf20Sopenharmony_ci	.long	stwotox		|$11-0 ftwotox norm
2038c2ecf20Sopenharmony_ci	.long	ld_pone		|$11-1 ftwotox zero
2048c2ecf20Sopenharmony_ci	.long	szr_inf		|$11-2 ftwotox inf
2058c2ecf20Sopenharmony_ci	.long	src_nan		|$11-3 ftwotox nan
2068c2ecf20Sopenharmony_ci	.long	stwotoxd	|$11-4 ftwotox denorm
2078c2ecf20Sopenharmony_ci	.long	serror		|$11-5 ftwotox ERROR
2088c2ecf20Sopenharmony_ci	.long	serror		|$11-6 ftwotox ERROR
2098c2ecf20Sopenharmony_ci	.long	serror		|$11-7 ftwotox ERROR
2108c2ecf20Sopenharmony_ci
2118c2ecf20Sopenharmony_ci	.long	stentox		|$12-0 ftentox norm
2128c2ecf20Sopenharmony_ci	.long	ld_pone		|$12-1 ftentox zero
2138c2ecf20Sopenharmony_ci	.long	szr_inf		|$12-2 ftentox inf
2148c2ecf20Sopenharmony_ci	.long	src_nan		|$12-3 ftentox nan
2158c2ecf20Sopenharmony_ci	.long	stentoxd	|$12-4 ftentox denorm
2168c2ecf20Sopenharmony_ci	.long	serror		|$12-5 ftentox ERROR
2178c2ecf20Sopenharmony_ci	.long	serror		|$12-6 ftentox ERROR
2188c2ecf20Sopenharmony_ci	.long	serror		|$12-7 ftentox ERROR
2198c2ecf20Sopenharmony_ci
2208c2ecf20Sopenharmony_ci	.long	serror		|$13-0 ERROR - illegal extension
2218c2ecf20Sopenharmony_ci	.long	serror		|$13-1 ERROR - illegal extension
2228c2ecf20Sopenharmony_ci	.long	serror		|$13-2 ERROR - illegal extension
2238c2ecf20Sopenharmony_ci	.long	serror		|$13-3 ERROR - illegal extension
2248c2ecf20Sopenharmony_ci	.long	serror		|$13-4 ERROR - illegal extension
2258c2ecf20Sopenharmony_ci	.long	serror		|$13-5 ERROR - illegal extension
2268c2ecf20Sopenharmony_ci	.long	serror		|$13-6 ERROR - illegal extension
2278c2ecf20Sopenharmony_ci	.long	serror		|$13-7 ERROR - illegal extension
2288c2ecf20Sopenharmony_ci
2298c2ecf20Sopenharmony_ci	.long	sslogn		|$14-0 flogn norm
2308c2ecf20Sopenharmony_ci	.long	t_dz2		|$14-1 flogn zero
2318c2ecf20Sopenharmony_ci	.long	sopr_inf	|$14-2 flogn inf
2328c2ecf20Sopenharmony_ci	.long	src_nan		|$14-3 flogn nan
2338c2ecf20Sopenharmony_ci	.long	sslognd		|$14-4 flogn denorm
2348c2ecf20Sopenharmony_ci	.long	serror		|$14-5 flogn ERROR
2358c2ecf20Sopenharmony_ci	.long	serror		|$14-6 flogn ERROR
2368c2ecf20Sopenharmony_ci	.long	serror		|$14-7 flogn ERROR
2378c2ecf20Sopenharmony_ci
2388c2ecf20Sopenharmony_ci	.long	sslog10		|$15-0 flog10 norm
2398c2ecf20Sopenharmony_ci	.long	t_dz2		|$15-1 flog10 zero
2408c2ecf20Sopenharmony_ci	.long	sopr_inf	|$15-2 flog10 inf
2418c2ecf20Sopenharmony_ci	.long	src_nan		|$15-3 flog10 nan
2428c2ecf20Sopenharmony_ci	.long	sslog10d	|$15-4 flog10 denorm
2438c2ecf20Sopenharmony_ci	.long	serror		|$15-5 flog10 ERROR
2448c2ecf20Sopenharmony_ci	.long	serror		|$15-6 flog10 ERROR
2458c2ecf20Sopenharmony_ci	.long	serror		|$15-7 flog10 ERROR
2468c2ecf20Sopenharmony_ci
2478c2ecf20Sopenharmony_ci	.long	sslog2		|$16-0 flog2 norm
2488c2ecf20Sopenharmony_ci	.long	t_dz2		|$16-1 flog2 zero
2498c2ecf20Sopenharmony_ci	.long	sopr_inf	|$16-2 flog2 inf
2508c2ecf20Sopenharmony_ci	.long	src_nan		|$16-3 flog2 nan
2518c2ecf20Sopenharmony_ci	.long	sslog2d		|$16-4 flog2 denorm
2528c2ecf20Sopenharmony_ci	.long	serror		|$16-5 flog2 ERROR
2538c2ecf20Sopenharmony_ci	.long	serror		|$16-6 flog2 ERROR
2548c2ecf20Sopenharmony_ci	.long	serror		|$16-7 flog2 ERROR
2558c2ecf20Sopenharmony_ci
2568c2ecf20Sopenharmony_ci	.long	serror		|$17-0 ERROR - illegal extension
2578c2ecf20Sopenharmony_ci	.long	serror		|$17-1 ERROR - illegal extension
2588c2ecf20Sopenharmony_ci	.long	serror		|$17-2 ERROR - illegal extension
2598c2ecf20Sopenharmony_ci	.long	serror		|$17-3 ERROR - illegal extension
2608c2ecf20Sopenharmony_ci	.long	serror		|$17-4 ERROR - illegal extension
2618c2ecf20Sopenharmony_ci	.long	serror		|$17-5 ERROR - illegal extension
2628c2ecf20Sopenharmony_ci	.long	serror		|$17-6 ERROR - illegal extension
2638c2ecf20Sopenharmony_ci	.long	serror		|$17-7 ERROR - illegal extension
2648c2ecf20Sopenharmony_ci
2658c2ecf20Sopenharmony_ci	.long	serror		|$18-0 ERROR - illegal extension
2668c2ecf20Sopenharmony_ci	.long	serror		|$18-1 ERROR - illegal extension
2678c2ecf20Sopenharmony_ci	.long	serror		|$18-2 ERROR - illegal extension
2688c2ecf20Sopenharmony_ci	.long	serror		|$18-3 ERROR - illegal extension
2698c2ecf20Sopenharmony_ci	.long	serror		|$18-4 ERROR - illegal extension
2708c2ecf20Sopenharmony_ci	.long	serror		|$18-5 ERROR - illegal extension
2718c2ecf20Sopenharmony_ci	.long	serror		|$18-6 ERROR - illegal extension
2728c2ecf20Sopenharmony_ci	.long	serror		|$18-7 ERROR - illegal extension
2738c2ecf20Sopenharmony_ci
2748c2ecf20Sopenharmony_ci	.long	scosh		|$19-0 fcosh norm
2758c2ecf20Sopenharmony_ci	.long	ld_pone		|$19-1 fcosh zero
2768c2ecf20Sopenharmony_ci	.long	ld_pinf		|$19-2 fcosh inf
2778c2ecf20Sopenharmony_ci	.long	src_nan		|$19-3 fcosh nan
2788c2ecf20Sopenharmony_ci	.long	scoshd		|$19-4 fcosh denorm
2798c2ecf20Sopenharmony_ci	.long	serror		|$19-5 fcosh ERROR
2808c2ecf20Sopenharmony_ci	.long	serror		|$19-6 fcosh ERROR
2818c2ecf20Sopenharmony_ci	.long	serror		|$19-7 fcosh ERROR
2828c2ecf20Sopenharmony_ci
2838c2ecf20Sopenharmony_ci	.long	serror		|$1a-0 ERROR - illegal extension
2848c2ecf20Sopenharmony_ci	.long	serror		|$1a-1 ERROR - illegal extension
2858c2ecf20Sopenharmony_ci	.long	serror		|$1a-2 ERROR - illegal extension
2868c2ecf20Sopenharmony_ci	.long	serror		|$1a-3 ERROR - illegal extension
2878c2ecf20Sopenharmony_ci	.long	serror		|$1a-4 ERROR - illegal extension
2888c2ecf20Sopenharmony_ci	.long	serror		|$1a-5 ERROR - illegal extension
2898c2ecf20Sopenharmony_ci	.long	serror		|$1a-6 ERROR - illegal extension
2908c2ecf20Sopenharmony_ci	.long	serror		|$1a-7 ERROR - illegal extension
2918c2ecf20Sopenharmony_ci
2928c2ecf20Sopenharmony_ci	.long	serror		|$1b-0 ERROR - illegal extension
2938c2ecf20Sopenharmony_ci	.long	serror		|$1b-1 ERROR - illegal extension
2948c2ecf20Sopenharmony_ci	.long	serror		|$1b-2 ERROR - illegal extension
2958c2ecf20Sopenharmony_ci	.long	serror		|$1b-3 ERROR - illegal extension
2968c2ecf20Sopenharmony_ci	.long	serror		|$1b-4 ERROR - illegal extension
2978c2ecf20Sopenharmony_ci	.long	serror		|$1b-5 ERROR - illegal extension
2988c2ecf20Sopenharmony_ci	.long	serror		|$1b-6 ERROR - illegal extension
2998c2ecf20Sopenharmony_ci	.long	serror		|$1b-7 ERROR - illegal extension
3008c2ecf20Sopenharmony_ci
3018c2ecf20Sopenharmony_ci	.long	sacos		|$1c-0 facos norm
3028c2ecf20Sopenharmony_ci	.long	ld_ppi2		|$1c-1 facos zero
3038c2ecf20Sopenharmony_ci	.long	t_operr		|$1c-2 facos inf
3048c2ecf20Sopenharmony_ci	.long	src_nan		|$1c-3 facos nan
3058c2ecf20Sopenharmony_ci	.long	sacosd		|$1c-4 facos denorm
3068c2ecf20Sopenharmony_ci	.long	serror		|$1c-5 facos ERROR
3078c2ecf20Sopenharmony_ci	.long	serror		|$1c-6 facos ERROR
3088c2ecf20Sopenharmony_ci	.long	serror		|$1c-7 facos ERROR
3098c2ecf20Sopenharmony_ci
3108c2ecf20Sopenharmony_ci	.long	scos		|$1d-0 fcos norm
3118c2ecf20Sopenharmony_ci	.long	ld_pone		|$1d-1 fcos zero
3128c2ecf20Sopenharmony_ci	.long	t_operr		|$1d-2 fcos inf
3138c2ecf20Sopenharmony_ci	.long	src_nan		|$1d-3 fcos nan
3148c2ecf20Sopenharmony_ci	.long	scosd		|$1d-4 fcos denorm
3158c2ecf20Sopenharmony_ci	.long	serror		|$1d-5 fcos ERROR
3168c2ecf20Sopenharmony_ci	.long	serror		|$1d-6 fcos ERROR
3178c2ecf20Sopenharmony_ci	.long	serror		|$1d-7 fcos ERROR
3188c2ecf20Sopenharmony_ci
3198c2ecf20Sopenharmony_ci	.long	sgetexp		|$1e-0 fgetexp norm
3208c2ecf20Sopenharmony_ci	.long	szero		|$1e-1 fgetexp zero
3218c2ecf20Sopenharmony_ci	.long	t_operr		|$1e-2 fgetexp inf
3228c2ecf20Sopenharmony_ci	.long	src_nan		|$1e-3 fgetexp nan
3238c2ecf20Sopenharmony_ci	.long	sgetexpd	|$1e-4 fgetexp denorm
3248c2ecf20Sopenharmony_ci	.long	serror		|$1e-5 fgetexp ERROR
3258c2ecf20Sopenharmony_ci	.long	serror		|$1e-6 fgetexp ERROR
3268c2ecf20Sopenharmony_ci	.long	serror		|$1e-7 fgetexp ERROR
3278c2ecf20Sopenharmony_ci
3288c2ecf20Sopenharmony_ci	.long	sgetman		|$1f-0 fgetman norm
3298c2ecf20Sopenharmony_ci	.long	szero		|$1f-1 fgetman zero
3308c2ecf20Sopenharmony_ci	.long	t_operr		|$1f-2 fgetman inf
3318c2ecf20Sopenharmony_ci	.long	src_nan		|$1f-3 fgetman nan
3328c2ecf20Sopenharmony_ci	.long	sgetmand	|$1f-4 fgetman denorm
3338c2ecf20Sopenharmony_ci	.long	serror		|$1f-5 fgetman ERROR
3348c2ecf20Sopenharmony_ci	.long	serror		|$1f-6 fgetman ERROR
3358c2ecf20Sopenharmony_ci	.long	serror		|$1f-7 fgetman ERROR
3368c2ecf20Sopenharmony_ci
3378c2ecf20Sopenharmony_ci	.long	serror		|$20-0 ERROR - illegal extension
3388c2ecf20Sopenharmony_ci	.long	serror		|$20-1 ERROR - illegal extension
3398c2ecf20Sopenharmony_ci	.long	serror		|$20-2 ERROR - illegal extension
3408c2ecf20Sopenharmony_ci	.long	serror		|$20-3 ERROR - illegal extension
3418c2ecf20Sopenharmony_ci	.long	serror		|$20-4 ERROR - illegal extension
3428c2ecf20Sopenharmony_ci	.long	serror		|$20-5 ERROR - illegal extension
3438c2ecf20Sopenharmony_ci	.long	serror		|$20-6 ERROR - illegal extension
3448c2ecf20Sopenharmony_ci	.long	serror		|$20-7 ERROR - illegal extension
3458c2ecf20Sopenharmony_ci
3468c2ecf20Sopenharmony_ci	.long	pmod		|$21-0 fmod all
3478c2ecf20Sopenharmony_ci	.long	pmod		|$21-1 fmod all
3488c2ecf20Sopenharmony_ci	.long	pmod		|$21-2 fmod all
3498c2ecf20Sopenharmony_ci	.long	pmod		|$21-3 fmod all
3508c2ecf20Sopenharmony_ci	.long	pmod		|$21-4 fmod all
3518c2ecf20Sopenharmony_ci	.long	serror		|$21-5 fmod ERROR
3528c2ecf20Sopenharmony_ci	.long	serror		|$21-6 fmod ERROR
3538c2ecf20Sopenharmony_ci	.long	serror		|$21-7 fmod ERROR
3548c2ecf20Sopenharmony_ci
3558c2ecf20Sopenharmony_ci	.long	serror		|$22-0 ERROR - illegal extension
3568c2ecf20Sopenharmony_ci	.long	serror		|$22-1 ERROR - illegal extension
3578c2ecf20Sopenharmony_ci	.long	serror		|$22-2 ERROR - illegal extension
3588c2ecf20Sopenharmony_ci	.long	serror		|$22-3 ERROR - illegal extension
3598c2ecf20Sopenharmony_ci	.long	serror		|$22-4 ERROR - illegal extension
3608c2ecf20Sopenharmony_ci	.long	serror		|$22-5 ERROR - illegal extension
3618c2ecf20Sopenharmony_ci	.long	serror		|$22-6 ERROR - illegal extension
3628c2ecf20Sopenharmony_ci	.long	serror		|$22-7 ERROR - illegal extension
3638c2ecf20Sopenharmony_ci
3648c2ecf20Sopenharmony_ci	.long	serror		|$23-0 ERROR - illegal extension
3658c2ecf20Sopenharmony_ci	.long	serror		|$23-1 ERROR - illegal extension
3668c2ecf20Sopenharmony_ci	.long	serror		|$23-2 ERROR - illegal extension
3678c2ecf20Sopenharmony_ci	.long	serror		|$23-3 ERROR - illegal extension
3688c2ecf20Sopenharmony_ci	.long	serror		|$23-4 ERROR - illegal extension
3698c2ecf20Sopenharmony_ci	.long	serror		|$23-5 ERROR - illegal extension
3708c2ecf20Sopenharmony_ci	.long	serror		|$23-6 ERROR - illegal extension
3718c2ecf20Sopenharmony_ci	.long	serror		|$23-7 ERROR - illegal extension
3728c2ecf20Sopenharmony_ci
3738c2ecf20Sopenharmony_ci	.long	serror		|$24-0 ERROR - illegal extension
3748c2ecf20Sopenharmony_ci	.long	serror		|$24-1 ERROR - illegal extension
3758c2ecf20Sopenharmony_ci	.long	serror		|$24-2 ERROR - illegal extension
3768c2ecf20Sopenharmony_ci	.long	serror		|$24-3 ERROR - illegal extension
3778c2ecf20Sopenharmony_ci	.long	serror		|$24-4 ERROR - illegal extension
3788c2ecf20Sopenharmony_ci	.long	serror		|$24-5 ERROR - illegal extension
3798c2ecf20Sopenharmony_ci	.long	serror		|$24-6 ERROR - illegal extension
3808c2ecf20Sopenharmony_ci	.long	serror		|$24-7 ERROR - illegal extension
3818c2ecf20Sopenharmony_ci
3828c2ecf20Sopenharmony_ci	.long	prem		|$25-0 frem all
3838c2ecf20Sopenharmony_ci	.long	prem		|$25-1 frem all
3848c2ecf20Sopenharmony_ci	.long	prem		|$25-2 frem all
3858c2ecf20Sopenharmony_ci	.long	prem		|$25-3 frem all
3868c2ecf20Sopenharmony_ci	.long	prem		|$25-4 frem all
3878c2ecf20Sopenharmony_ci	.long	serror		|$25-5 frem ERROR
3888c2ecf20Sopenharmony_ci	.long	serror		|$25-6 frem ERROR
3898c2ecf20Sopenharmony_ci	.long	serror		|$25-7 frem ERROR
3908c2ecf20Sopenharmony_ci
3918c2ecf20Sopenharmony_ci	.long	pscale		|$26-0 fscale all
3928c2ecf20Sopenharmony_ci	.long	pscale		|$26-1 fscale all
3938c2ecf20Sopenharmony_ci	.long	pscale		|$26-2 fscale all
3948c2ecf20Sopenharmony_ci	.long	pscale		|$26-3 fscale all
3958c2ecf20Sopenharmony_ci	.long	pscale		|$26-4 fscale all
3968c2ecf20Sopenharmony_ci	.long	serror		|$26-5 fscale ERROR
3978c2ecf20Sopenharmony_ci	.long	serror		|$26-6 fscale ERROR
3988c2ecf20Sopenharmony_ci	.long	serror		|$26-7 fscale ERROR
3998c2ecf20Sopenharmony_ci
4008c2ecf20Sopenharmony_ci	.long	serror		|$27-0 ERROR - illegal extension
4018c2ecf20Sopenharmony_ci	.long	serror		|$27-1 ERROR - illegal extension
4028c2ecf20Sopenharmony_ci	.long	serror		|$27-2 ERROR - illegal extension
4038c2ecf20Sopenharmony_ci	.long	serror		|$27-3 ERROR - illegal extension
4048c2ecf20Sopenharmony_ci	.long	serror		|$27-4 ERROR - illegal extension
4058c2ecf20Sopenharmony_ci	.long	serror		|$27-5 ERROR - illegal extension
4068c2ecf20Sopenharmony_ci	.long	serror		|$27-6 ERROR - illegal extension
4078c2ecf20Sopenharmony_ci	.long	serror		|$27-7 ERROR - illegal extension
4088c2ecf20Sopenharmony_ci
4098c2ecf20Sopenharmony_ci	.long	serror		|$28-0 ERROR - illegal extension
4108c2ecf20Sopenharmony_ci	.long	serror		|$28-1 ERROR - illegal extension
4118c2ecf20Sopenharmony_ci	.long	serror		|$28-2 ERROR - illegal extension
4128c2ecf20Sopenharmony_ci	.long	serror		|$28-3 ERROR - illegal extension
4138c2ecf20Sopenharmony_ci	.long	serror		|$28-4 ERROR - illegal extension
4148c2ecf20Sopenharmony_ci	.long	serror		|$28-5 ERROR - illegal extension
4158c2ecf20Sopenharmony_ci	.long	serror		|$28-6 ERROR - illegal extension
4168c2ecf20Sopenharmony_ci	.long	serror		|$28-7 ERROR - illegal extension
4178c2ecf20Sopenharmony_ci
4188c2ecf20Sopenharmony_ci	.long	serror		|$29-0 ERROR - illegal extension
4198c2ecf20Sopenharmony_ci	.long	serror		|$29-1 ERROR - illegal extension
4208c2ecf20Sopenharmony_ci	.long	serror		|$29-2 ERROR - illegal extension
4218c2ecf20Sopenharmony_ci	.long	serror		|$29-3 ERROR - illegal extension
4228c2ecf20Sopenharmony_ci	.long	serror		|$29-4 ERROR - illegal extension
4238c2ecf20Sopenharmony_ci	.long	serror		|$29-5 ERROR - illegal extension
4248c2ecf20Sopenharmony_ci	.long	serror		|$29-6 ERROR - illegal extension
4258c2ecf20Sopenharmony_ci	.long	serror		|$29-7 ERROR - illegal extension
4268c2ecf20Sopenharmony_ci
4278c2ecf20Sopenharmony_ci	.long	serror		|$2a-0 ERROR - illegal extension
4288c2ecf20Sopenharmony_ci	.long	serror		|$2a-1 ERROR - illegal extension
4298c2ecf20Sopenharmony_ci	.long	serror		|$2a-2 ERROR - illegal extension
4308c2ecf20Sopenharmony_ci	.long	serror		|$2a-3 ERROR - illegal extension
4318c2ecf20Sopenharmony_ci	.long	serror		|$2a-4 ERROR - illegal extension
4328c2ecf20Sopenharmony_ci	.long	serror		|$2a-5 ERROR - illegal extension
4338c2ecf20Sopenharmony_ci	.long	serror		|$2a-6 ERROR - illegal extension
4348c2ecf20Sopenharmony_ci	.long	serror		|$2a-7 ERROR - illegal extension
4358c2ecf20Sopenharmony_ci
4368c2ecf20Sopenharmony_ci	.long	serror		|$2b-0 ERROR - illegal extension
4378c2ecf20Sopenharmony_ci	.long	serror		|$2b-1 ERROR - illegal extension
4388c2ecf20Sopenharmony_ci	.long	serror		|$2b-2 ERROR - illegal extension
4398c2ecf20Sopenharmony_ci	.long	serror		|$2b-3 ERROR - illegal extension
4408c2ecf20Sopenharmony_ci	.long	serror		|$2b-4 ERROR - illegal extension
4418c2ecf20Sopenharmony_ci	.long	serror		|$2b-5 ERROR - illegal extension
4428c2ecf20Sopenharmony_ci	.long	serror		|$2b-6 ERROR - illegal extension
4438c2ecf20Sopenharmony_ci	.long	serror		|$2b-7 ERROR - illegal extension
4448c2ecf20Sopenharmony_ci
4458c2ecf20Sopenharmony_ci	.long	serror		|$2c-0 ERROR - illegal extension
4468c2ecf20Sopenharmony_ci	.long	serror		|$2c-1 ERROR - illegal extension
4478c2ecf20Sopenharmony_ci	.long	serror		|$2c-2 ERROR - illegal extension
4488c2ecf20Sopenharmony_ci	.long	serror		|$2c-3 ERROR - illegal extension
4498c2ecf20Sopenharmony_ci	.long	serror		|$2c-4 ERROR - illegal extension
4508c2ecf20Sopenharmony_ci	.long	serror		|$2c-5 ERROR - illegal extension
4518c2ecf20Sopenharmony_ci	.long	serror		|$2c-6 ERROR - illegal extension
4528c2ecf20Sopenharmony_ci	.long	serror		|$2c-7 ERROR - illegal extension
4538c2ecf20Sopenharmony_ci
4548c2ecf20Sopenharmony_ci	.long	serror		|$2d-0 ERROR - illegal extension
4558c2ecf20Sopenharmony_ci	.long	serror		|$2d-1 ERROR - illegal extension
4568c2ecf20Sopenharmony_ci	.long	serror		|$2d-2 ERROR - illegal extension
4578c2ecf20Sopenharmony_ci	.long	serror		|$2d-3 ERROR - illegal extension
4588c2ecf20Sopenharmony_ci	.long	serror		|$2d-4 ERROR - illegal extension
4598c2ecf20Sopenharmony_ci	.long	serror		|$2d-5 ERROR - illegal extension
4608c2ecf20Sopenharmony_ci	.long	serror		|$2d-6 ERROR - illegal extension
4618c2ecf20Sopenharmony_ci	.long	serror		|$2d-7 ERROR - illegal extension
4628c2ecf20Sopenharmony_ci
4638c2ecf20Sopenharmony_ci	.long	serror		|$2e-0 ERROR - illegal extension
4648c2ecf20Sopenharmony_ci	.long	serror		|$2e-1 ERROR - illegal extension
4658c2ecf20Sopenharmony_ci	.long	serror		|$2e-2 ERROR - illegal extension
4668c2ecf20Sopenharmony_ci	.long	serror		|$2e-3 ERROR - illegal extension
4678c2ecf20Sopenharmony_ci	.long	serror		|$2e-4 ERROR - illegal extension
4688c2ecf20Sopenharmony_ci	.long	serror		|$2e-5 ERROR - illegal extension
4698c2ecf20Sopenharmony_ci	.long	serror		|$2e-6 ERROR - illegal extension
4708c2ecf20Sopenharmony_ci	.long	serror		|$2e-7 ERROR - illegal extension
4718c2ecf20Sopenharmony_ci
4728c2ecf20Sopenharmony_ci	.long	serror		|$2f-0 ERROR - illegal extension
4738c2ecf20Sopenharmony_ci	.long	serror		|$2f-1 ERROR - illegal extension
4748c2ecf20Sopenharmony_ci	.long	serror		|$2f-2 ERROR - illegal extension
4758c2ecf20Sopenharmony_ci	.long	serror		|$2f-3 ERROR - illegal extension
4768c2ecf20Sopenharmony_ci	.long	serror		|$2f-4 ERROR - illegal extension
4778c2ecf20Sopenharmony_ci	.long	serror		|$2f-5 ERROR - illegal extension
4788c2ecf20Sopenharmony_ci	.long	serror		|$2f-6 ERROR - illegal extension
4798c2ecf20Sopenharmony_ci	.long	serror		|$2f-7 ERROR - illegal extension
4808c2ecf20Sopenharmony_ci
4818c2ecf20Sopenharmony_ci	.long	ssincos		|$30-0 fsincos norm
4828c2ecf20Sopenharmony_ci	.long	ssincosz	|$30-1 fsincos zero
4838c2ecf20Sopenharmony_ci	.long	ssincosi	|$30-2 fsincos inf
4848c2ecf20Sopenharmony_ci	.long	ssincosnan	|$30-3 fsincos nan
4858c2ecf20Sopenharmony_ci	.long	ssincosd	|$30-4 fsincos denorm
4868c2ecf20Sopenharmony_ci	.long	serror		|$30-5 fsincos ERROR
4878c2ecf20Sopenharmony_ci	.long	serror		|$30-6 fsincos ERROR
4888c2ecf20Sopenharmony_ci	.long	serror		|$30-7 fsincos ERROR
4898c2ecf20Sopenharmony_ci
4908c2ecf20Sopenharmony_ci	.long	ssincos		|$31-0 fsincos norm
4918c2ecf20Sopenharmony_ci	.long	ssincosz	|$31-1 fsincos zero
4928c2ecf20Sopenharmony_ci	.long	ssincosi	|$31-2 fsincos inf
4938c2ecf20Sopenharmony_ci	.long	ssincosnan	|$31-3 fsincos nan
4948c2ecf20Sopenharmony_ci	.long	ssincosd	|$31-4 fsincos denorm
4958c2ecf20Sopenharmony_ci	.long	serror		|$31-5 fsincos ERROR
4968c2ecf20Sopenharmony_ci	.long	serror		|$31-6 fsincos ERROR
4978c2ecf20Sopenharmony_ci	.long	serror		|$31-7 fsincos ERROR
4988c2ecf20Sopenharmony_ci
4998c2ecf20Sopenharmony_ci	.long	ssincos		|$32-0 fsincos norm
5008c2ecf20Sopenharmony_ci	.long	ssincosz	|$32-1 fsincos zero
5018c2ecf20Sopenharmony_ci	.long	ssincosi	|$32-2 fsincos inf
5028c2ecf20Sopenharmony_ci	.long	ssincosnan	|$32-3 fsincos nan
5038c2ecf20Sopenharmony_ci	.long	ssincosd	|$32-4 fsincos denorm
5048c2ecf20Sopenharmony_ci	.long	serror		|$32-5 fsincos ERROR
5058c2ecf20Sopenharmony_ci	.long	serror		|$32-6 fsincos ERROR
5068c2ecf20Sopenharmony_ci	.long	serror		|$32-7 fsincos ERROR
5078c2ecf20Sopenharmony_ci
5088c2ecf20Sopenharmony_ci	.long	ssincos		|$33-0 fsincos norm
5098c2ecf20Sopenharmony_ci	.long	ssincosz	|$33-1 fsincos zero
5108c2ecf20Sopenharmony_ci	.long	ssincosi	|$33-2 fsincos inf
5118c2ecf20Sopenharmony_ci	.long	ssincosnan	|$33-3 fsincos nan
5128c2ecf20Sopenharmony_ci	.long	ssincosd	|$33-4 fsincos denorm
5138c2ecf20Sopenharmony_ci	.long	serror		|$33-5 fsincos ERROR
5148c2ecf20Sopenharmony_ci	.long	serror		|$33-6 fsincos ERROR
5158c2ecf20Sopenharmony_ci	.long	serror		|$33-7 fsincos ERROR
5168c2ecf20Sopenharmony_ci
5178c2ecf20Sopenharmony_ci	.long	ssincos		|$34-0 fsincos norm
5188c2ecf20Sopenharmony_ci	.long	ssincosz	|$34-1 fsincos zero
5198c2ecf20Sopenharmony_ci	.long	ssincosi	|$34-2 fsincos inf
5208c2ecf20Sopenharmony_ci	.long	ssincosnan	|$34-3 fsincos nan
5218c2ecf20Sopenharmony_ci	.long	ssincosd	|$34-4 fsincos denorm
5228c2ecf20Sopenharmony_ci	.long	serror		|$34-5 fsincos ERROR
5238c2ecf20Sopenharmony_ci	.long	serror		|$34-6 fsincos ERROR
5248c2ecf20Sopenharmony_ci	.long	serror		|$34-7 fsincos ERROR
5258c2ecf20Sopenharmony_ci
5268c2ecf20Sopenharmony_ci	.long	ssincos		|$35-0 fsincos norm
5278c2ecf20Sopenharmony_ci	.long	ssincosz	|$35-1 fsincos zero
5288c2ecf20Sopenharmony_ci	.long	ssincosi	|$35-2 fsincos inf
5298c2ecf20Sopenharmony_ci	.long	ssincosnan	|$35-3 fsincos nan
5308c2ecf20Sopenharmony_ci	.long	ssincosd	|$35-4 fsincos denorm
5318c2ecf20Sopenharmony_ci	.long	serror		|$35-5 fsincos ERROR
5328c2ecf20Sopenharmony_ci	.long	serror		|$35-6 fsincos ERROR
5338c2ecf20Sopenharmony_ci	.long	serror		|$35-7 fsincos ERROR
5348c2ecf20Sopenharmony_ci
5358c2ecf20Sopenharmony_ci	.long	ssincos		|$36-0 fsincos norm
5368c2ecf20Sopenharmony_ci	.long	ssincosz	|$36-1 fsincos zero
5378c2ecf20Sopenharmony_ci	.long	ssincosi	|$36-2 fsincos inf
5388c2ecf20Sopenharmony_ci	.long	ssincosnan	|$36-3 fsincos nan
5398c2ecf20Sopenharmony_ci	.long	ssincosd	|$36-4 fsincos denorm
5408c2ecf20Sopenharmony_ci	.long	serror		|$36-5 fsincos ERROR
5418c2ecf20Sopenharmony_ci	.long	serror		|$36-6 fsincos ERROR
5428c2ecf20Sopenharmony_ci	.long	serror		|$36-7 fsincos ERROR
5438c2ecf20Sopenharmony_ci
5448c2ecf20Sopenharmony_ci	.long	ssincos		|$37-0 fsincos norm
5458c2ecf20Sopenharmony_ci	.long	ssincosz	|$37-1 fsincos zero
5468c2ecf20Sopenharmony_ci	.long	ssincosi	|$37-2 fsincos inf
5478c2ecf20Sopenharmony_ci	.long	ssincosnan	|$37-3 fsincos nan
5488c2ecf20Sopenharmony_ci	.long	ssincosd	|$37-4 fsincos denorm
5498c2ecf20Sopenharmony_ci	.long	serror		|$37-5 fsincos ERROR
5508c2ecf20Sopenharmony_ci	.long	serror		|$37-6 fsincos ERROR
5518c2ecf20Sopenharmony_ci	.long	serror		|$37-7 fsincos ERROR
5528c2ecf20Sopenharmony_ci
5538c2ecf20Sopenharmony_ci	|end
554