Add support for strong aliasing of symbols in i386 assembly.

This macro is a literal copy from the MIPS version of <machine/asm.h>.
This commit is contained in:
ed 2012-01-03 07:06:35 +00:00
parent d73fab6676
commit 29cd68a581

View File

@ -89,6 +89,13 @@
#define ENTRY(x) _ENTRY(x)
#endif
/*
* STRONG_ALIAS: create a strong alias.
*/
#define STRONG_ALIAS(alias,sym) \
.globl alias; \
alias = sym
#define RCSID(x) .text; .asciz x
#undef __FBSDID