Only do indirections in ENTRY() if _ARCH_INDIRECT is defined.

This commit is contained in:
Bruce Evans 1997-04-15 14:06:34 +00:00
parent 3bc097d098
commit 06e33296dd
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=24965
2 changed files with 16 additions and 10 deletions

View File

@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* from: @(#)DEFS.h 5.1 (Berkeley) 4/23/90
* $Id: asm.h,v 1.1 1997/03/09 10:39:15 bde Exp $
* $Id: asm.h,v 1.2 1997/03/09 13:57:32 bde Exp $
*/
#include <sys/cdefs.h>
@ -119,13 +119,14 @@
#endif
#ifdef _ARCH_INDIRECT
/*
* This header is currently only used in lib/msun/i387.
* Use it to generate code to select between the generic math functions
* and the i387 ones.
* Generate code to select between the generic functions and _ARCH_INDIRECT
* specific ones.
* XXX nested __CONCATs don't work with non-ANSI cpp's.
*/
#undef ENTRY
#define ANAME(x) CNAME(__CONCAT(__i387_,x))
#define ANAME(x) CNAME(__CONCAT(__CONCAT(__,_ARCH_INDIRECT),x))
#define ASELNAME(x) CNAME(__CONCAT(__arch_select_,x))
#define AVECNAME(x) CNAME(__CONCAT(__arch_,x))
#define GNAME(x) CNAME(__CONCAT(__generic_,x))
@ -196,6 +197,8 @@
#endif /* PROF */
#endif /* _ARCH_INDIRECT */
#ifndef RCSID
#define RCSID(a)
#endif

View File

@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* from: @(#)DEFS.h 5.1 (Berkeley) 4/23/90
* $Id: asm.h,v 1.1 1997/03/09 10:39:15 bde Exp $
* $Id: asm.h,v 1.2 1997/03/09 13:57:32 bde Exp $
*/
#include <sys/cdefs.h>
@ -119,13 +119,14 @@
#endif
#ifdef _ARCH_INDIRECT
/*
* This header is currently only used in lib/msun/i387.
* Use it to generate code to select between the generic math functions
* and the i387 ones.
* Generate code to select between the generic functions and _ARCH_INDIRECT
* specific ones.
* XXX nested __CONCATs don't work with non-ANSI cpp's.
*/
#undef ENTRY
#define ANAME(x) CNAME(__CONCAT(__i387_,x))
#define ANAME(x) CNAME(__CONCAT(__CONCAT(__,_ARCH_INDIRECT),x))
#define ASELNAME(x) CNAME(__CONCAT(__arch_select_,x))
#define AVECNAME(x) CNAME(__CONCAT(__arch_,x))
#define GNAME(x) CNAME(__CONCAT(__generic_,x))
@ -196,6 +197,8 @@
#endif /* PROF */
#endif /* _ARCH_INDIRECT */
#ifndef RCSID
#define RCSID(a)
#endif