Do all the includes: <machine/asm.h> -> <machine/asmacros.h>

Reviewed by:
Submitted by:
This commit is contained in:
Jordan K. Hubbard 1994-08-19 11:14:32 +00:00
parent 2a3617d129
commit ec8cc6082c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=2121
23 changed files with 46 additions and 46 deletions

View File

@ -33,9 +33,9 @@
* J.T. Conklin (jtc@wimsey.com), Winning Strategies, Inc.
*/
#include <machine/asm.h>
#include <machine/asmacros.h>
RCSID("$Id: e_asin.S,v 1.2 1994/03/12 01:30:25 jtc Exp $")
RCSID("$Id: e_asin.S,v 1.1.1.1 1994/08/19 09:40:00 jkh Exp $")
/* asin = atan (x / sqrt(1 - x^2)) */
ENTRY(__ieee754_asin)

View File

@ -33,9 +33,9 @@
* J.T. Conklin (jtc@wimsey.com), Winning Strategies, Inc.
*/
#include <machine/asm.h>
#include <machine/asmacros.h>
RCSID("$Id: e_atan2.S,v 1.2 1994/03/12 01:30:26 jtc Exp $")
RCSID("$Id: e_atan2.S,v 1.1.1.1 1994/08/19 09:40:01 jkh Exp $")
ENTRY(__ieee754_atan2)
fldl 4(%esp)

View File

@ -33,9 +33,9 @@
* J.T. Conklin (jtc@wimsey.com), Winning Strategies, Inc.
*/
#include <machine/asm.h>
#include <machine/asmacros.h>
RCSID("$Id: e_exp.S,v 1.2 1994/03/12 01:30:27 jtc Exp $")
RCSID("$Id: e_exp.S,v 1.1.1.1 1994/08/19 09:40:00 jkh Exp $")
/* e^x = 2^(x * log2(e)) */
ENTRY(__ieee754_exp)

View File

@ -33,9 +33,9 @@
* J.T. Conklin (jtc@wimsey.com), Winning Strategies, Inc.
*/
#include <machine/asm.h>
#include <machine/asmacros.h>
RCSID("$Id: e_fmod.S,v 1.2 1994/03/12 01:30:28 jtc Exp $")
RCSID("$Id: e_fmod.S,v 1.1.1.1 1994/08/19 09:40:01 jkh Exp $")
ENTRY(__ieee754_fmod)
fldl 12(%esp)

View File

@ -33,9 +33,9 @@
* J.T. Conklin (jtc@wimsey.com), Winning Strategies, Inc.
*/
#include <machine/asm.h>
#include <machine/asmacros.h>
RCSID("$Id: e_log.S,v 1.2 1994/03/12 01:30:29 jtc Exp $")
RCSID("$Id: e_log.S,v 1.1.1.1 1994/08/19 09:40:00 jkh Exp $")
ENTRY(__ieee754_log)
fldln2

View File

@ -33,9 +33,9 @@
* J.T. Conklin (jtc@wimsey.com), Winning Strategies, Inc.
*/
#include <machine/asm.h>
#include <machine/asmacros.h>
RCSID("$Id: e_log10.S,v 1.2 1994/03/12 01:30:30 jtc Exp $")
RCSID("$Id: e_log10.S,v 1.1.1.1 1994/08/19 09:40:00 jkh Exp $")
ENTRY(__ieee754_log10)
fldlg2

View File

@ -33,9 +33,9 @@
* J.T. Conklin (jtc@wimsey.com), Winning Strategies, Inc.
*/
#include <machine/asm.h>
#include <machine/asmacros.h>
RCSID("$Id: e_remainder.S,v 1.2 1994/03/12 01:30:31 jtc Exp $")
RCSID("$Id: e_remainder.S,v 1.1.1.1 1994/08/19 09:40:01 jkh Exp $")
ENTRY(__ieee754_remainder)
fldl 12(%esp)

View File

@ -33,9 +33,9 @@
* J.T. Conklin (jtc@wimsey.com), Winning Strategies, Inc.
*/
#include <machine/asm.h>
#include <machine/asmacros.h>
RCSID("$Id: e_scalb.S,v 1.2 1994/03/12 01:30:32 jtc Exp $")
RCSID("$Id: e_scalb.S,v 1.1.1.1 1994/08/19 09:40:00 jkh Exp $")
ENTRY(__ieee754_scalb)
fldl 12(%esp)

View File

@ -33,9 +33,9 @@
* J.T. Conklin (jtc@wimsey.com), Winning Strategies, Inc.
*/
#include <machine/asm.h>
#include <machine/asmacros.h>
RCSID("$Id: e_sqrt.S,v 1.2 1994/03/12 01:30:33 jtc Exp $")
RCSID("$Id: e_sqrt.S,v 1.1.1.1 1994/08/19 09:40:00 jkh Exp $")
ENTRY(__ieee754_sqrt)
fldl 4(%esp)

View File

@ -33,9 +33,9 @@
* J.T. Conklin (jtc@wimsey.com), Winning Strategies, Inc.
*/
#include <machine/asm.h>
#include <machine/asmacros.h>
RCSID("$Id: s_atan.S,v 1.2 1994/03/12 01:30:34 jtc Exp $")
RCSID("$Id: s_atan.S,v 1.1.1.1 1994/08/19 09:40:00 jkh Exp $")
ENTRY(atan)
fldl 4(%esp)

View File

@ -33,9 +33,9 @@
* J.T. Conklin (jtc@wimsey.com), Winning Strategies, Inc.
*/
#include <machine/asm.h>
#include <machine/asmacros.h>
RCSID("$Id: s_ceil.S,v 1.2 1994/03/12 01:30:35 jtc Exp $")
RCSID("$Id: s_ceil.S,v 1.1.1.1 1994/08/19 09:40:00 jkh Exp $")
ENTRY(ceil)
pushl %ebp

View File

@ -33,9 +33,9 @@
* J.T. Conklin (jtc@wimsey.com), Winning Strategies, Inc.
*/
#include <machine/asm.h>
#include <machine/asmacros.h>
RCSID("$Id: s_copysign.S,v 1.2 1994/03/12 01:30:36 jtc Exp $")
RCSID("$Id: s_copysign.S,v 1.1.1.1 1994/08/19 09:40:00 jkh Exp $")
ENTRY(copysign)
movl 16(%esp),%edx

View File

@ -33,9 +33,9 @@
* J.T. Conklin (jtc@wimsey.com), Winning Strategies, Inc.
*/
#include <machine/asm.h>
#include <machine/asmacros.h>
RCSID("$Id: s_cos.S,v 1.3 1994/03/12 01:30:37 jtc Exp $")
RCSID("$Id: s_cos.S,v 1.1.1.1 1994/08/19 09:40:01 jkh Exp $")
ENTRY(cos)
fldl 4(%esp)

View File

@ -33,9 +33,9 @@
* J.T. Conklin (jtc@wimsey.com), Winning Strategies, Inc.
*/
#include <machine/asm.h>
#include <machine/asmacros.h>
RCSID("$Id: s_finite.S,v 1.2 1994/03/12 01:30:38 jtc Exp $")
RCSID("$Id: s_finite.S,v 1.1.1.1 1994/08/19 09:40:01 jkh Exp $")
ENTRY(finite)
movl 8(%esp),%eax

View File

@ -33,9 +33,9 @@
* J.T. Conklin (jtc@wimsey.com), Winning Strategies, Inc.
*/
#include <machine/asm.h>
#include <machine/asmacros.h>
RCSID("$Id: s_floor.S,v 1.2 1994/03/12 01:30:40 jtc Exp $")
RCSID("$Id: s_floor.S,v 1.1.1.1 1994/08/19 09:40:01 jkh Exp $")
ENTRY(floor)
pushl %ebp

View File

@ -33,9 +33,9 @@
* J.T. Conklin (jtc@wimsey.com), Winning Strategies, Inc.
*/
#include <machine/asm.h>
#include <machine/asmacros.h>
RCSID("$Id: s_ilogb.S,v 1.2 1994/03/12 01:30:41 jtc Exp $")
RCSID("$Id: s_ilogb.S,v 1.1.1.1 1994/08/19 09:40:01 jkh Exp $")
ENTRY(ilogb)
pushl %esp

View File

@ -33,9 +33,9 @@
* J.T. Conklin (jtc@wimsey.com), Winning Strategies, Inc.
*/
#include <machine/asm.h>
#include <machine/asmacros.h>
RCSID("$Id: s_log1p.S,v 1.3 1994/08/18 20:42:35 jtc Exp $")
RCSID("$Id: s_log1p.S,v 1.1.1.1 1994/08/19 09:40:01 jkh Exp $")
ENTRY(log1p)
fldln2

View File

@ -33,9 +33,9 @@
* J.T. Conklin (jtc@wimsey.com), Winning Strategies, Inc.
*/
#include <machine/asm.h>
#include <machine/asmacros.h>
RCSID("$Id: s_logb.S,v 1.2 1994/03/12 01:30:43 jtc Exp $")
RCSID("$Id: s_logb.S,v 1.1.1.1 1994/08/19 09:40:01 jkh Exp $")
ENTRY(logb)
fldl 4(%esp)

View File

@ -33,9 +33,9 @@
* J.T. Conklin (jtc@wimsey.com), Winning Strategies, Inc.
*/
#include <machine/asm.h>
#include <machine/asmacros.h>
RCSID("$Id: s_rint.S,v 1.2 1994/03/12 01:30:45 jtc Exp $")
RCSID("$Id: s_rint.S,v 1.1.1.1 1994/08/19 09:40:01 jkh Exp $")
ENTRY(rint)
fldl 4(%esp)

View File

@ -33,9 +33,9 @@
* J.T. Conklin (jtc@wimsey.com), Winning Strategies, Inc.
*/
#include <machine/asm.h>
#include <machine/asmacros.h>
RCSID("$Id: s_scalbn.S,v 1.2 1994/03/12 01:30:46 jtc Exp $")
RCSID("$Id: s_scalbn.S,v 1.1.1.1 1994/08/19 09:40:01 jkh Exp $")
ENTRY(scalbn)
fildl 12(%esp)

View File

@ -33,9 +33,9 @@
* J.T. Conklin (jtc@wimsey.com), Winning Strategies, Inc.
*/
#include <machine/asm.h>
#include <machine/asmacros.h>
RCSID("$Id: s_significand.S,v 1.2 1994/03/12 01:30:48 jtc Exp $")
RCSID("$Id: s_significand.S,v 1.1.1.1 1994/08/19 09:40:01 jkh Exp $")
ENTRY(significand)
fldl 4(%esp)

View File

@ -33,9 +33,9 @@
* J.T. Conklin (jtc@wimsey.com), Winning Strategies, Inc.
*/
#include <machine/asm.h>
#include <machine/asmacros.h>
RCSID("$Id: s_sin.S,v 1.3 1994/03/12 01:30:50 jtc Exp $")
RCSID("$Id: s_sin.S,v 1.1.1.1 1994/08/19 09:40:01 jkh Exp $")
ENTRY(sin)
fldl 4(%esp)

View File

@ -33,9 +33,9 @@
* J.T. Conklin (jtc@wimsey.com), Winning Strategies, Inc.
*/
#include <machine/asm.h>
#include <machine/asmacros.h>
RCSID("$Id: s_tan.S,v 1.3 1994/03/12 01:30:52 jtc Exp $")
RCSID("$Id: s_tan.S,v 1.1.1.1 1994/08/19 09:40:01 jkh Exp $")
ENTRY(tan)
fldl 4(%esp)