diff options
author | Martynas Venckus <martynas@cvs.openbsd.org> | 2013-03-28 17:30:46 +0000 |
---|---|---|
committer | Martynas Venckus <martynas@cvs.openbsd.org> | 2013-03-28 17:30:46 +0000 |
commit | dd27625163090c5e5b351e017cd1ffd03a373b5f (patch) | |
tree | f866b9f603ad996d274d4f4ab20ca3a2f0f97b0c /sys/arch/m68k | |
parent | fcc4d6add65a985a9353ecdcfdc4f44880982afb (diff) |
Add __strong_alias macros for all architectures to be able to alias
another symbol without weak attribute. To be used in libc and libm
soon. Agreed by kettenis@, guenther@, matthew@.
Diffstat (limited to 'sys/arch/m68k')
-rw-r--r-- | sys/arch/m68k/include/cdefs.h | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/sys/arch/m68k/include/cdefs.h b/sys/arch/m68k/include/cdefs.h index 8cfc0ed5f10..44374d27d64 100644 --- a/sys/arch/m68k/include/cdefs.h +++ b/sys/arch/m68k/include/cdefs.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cdefs.h,v 1.10 2013/02/02 13:32:06 miod Exp $ */ +/* $OpenBSD: cdefs.h,v 1.11 2013/03/28 17:30:45 martynas Exp $ */ /* * Written by J.T. Conklin <jtc@wimsey.com> 01/17/95. @@ -8,17 +8,14 @@ #ifndef _M68K_CDEFS_H_ #define _M68K_CDEFS_H_ -#if defined(lint) -#define __indr_reference(sym,alias) __lint_equal__(sym,alias) -#define __warn_references(sym,msg) -#define __weak_alias(alias,sym) __lint_equal__(sym,alias) -#elif defined(__GNUC__) && defined(__STDC__) +#define __strong_alias(alias,sym) \ + __asm__(".global " __STRING(alias) " ; " \ + __STRING(alias) " = " __STRING(sym)) #define __weak_alias(alias,sym) \ __asm__(".weak " __STRING(alias) " ; " \ __STRING(alias) " = " __STRING(sym)) #define __warn_references(sym,msg) \ __asm__(".section .gnu.warning." __STRING(sym) \ " ; .ascii \"" msg "\" ; .text") -#endif #endif /* !_M68K_CDEFS_H_ */ |