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:
parent
d73fab6676
commit
29cd68a581
@ -89,6 +89,13 @@
|
|||||||
#define ENTRY(x) _ENTRY(x)
|
#define ENTRY(x) _ENTRY(x)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/*
|
||||||
|
* STRONG_ALIAS: create a strong alias.
|
||||||
|
*/
|
||||||
|
#define STRONG_ALIAS(alias,sym) \
|
||||||
|
.globl alias; \
|
||||||
|
alias = sym
|
||||||
|
|
||||||
#define RCSID(x) .text; .asciz x
|
#define RCSID(x) .text; .asciz x
|
||||||
|
|
||||||
#undef __FBSDID
|
#undef __FBSDID
|
||||||
|
Loading…
x
Reference in New Issue
Block a user