Deleted Added
full compact
33c33
< * $FreeBSD: head/sys/amd64/include/asm.h 254463 2013-08-17 19:24:58Z jilles $
---
> * $FreeBSD: head/sys/amd64/include/asm.h 258447 2013-11-21 21:25:58Z andreast $
79a80,88
> /*
> * WEAK_REFERENCE(): create a weak reference alias from sym.
> * The macro is not a general asm macro that takes arbitrary names,
> * but one that takes only C names. It does the non-null name
> * translation inside the macro.
> */
> #define WEAK_REFERENCE(sym, alias) \
> .weak CNAME(alias); \
> .equ CNAME(alias),CNAME(sym)