summaryrefslogtreecommitdiff
path: root/sys/arch/alpha/include/asm.h
diff options
context:
space:
mode:
authorMartynas Venckus <martynas@cvs.openbsd.org>2013-03-28 17:41:05 +0000
committerMartynas Venckus <martynas@cvs.openbsd.org>2013-03-28 17:41:05 +0000
commit082441c0c4b4a60860a60b78b9f451526c393600 (patch)
treea9e3f2cef8fa8b36e7d7100a47543afb3dbfaae6 /sys/arch/alpha/include/asm.h
parentdd27625163090c5e5b351e017cd1ffd03a373b5f (diff)
Add STRONG_ALIAS macros to be used from assembly code in libc and
libm. While at it, remove now unused workarounds for lint. Agreed by kettenis@, guenther@, matthew@.
Diffstat (limited to 'sys/arch/alpha/include/asm.h')
-rw-r--r--sys/arch/alpha/include/asm.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/sys/arch/alpha/include/asm.h b/sys/arch/alpha/include/asm.h
index 44b9a2353da..24d9abd39b6 100644
--- a/sys/arch/alpha/include/asm.h
+++ b/sys/arch/alpha/include/asm.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: asm.h,v 1.11 2012/09/21 13:58:48 naddy Exp $ */
+/* $OpenBSD: asm.h,v 1.12 2013/03/28 17:41:03 martynas Exp $ */
/* $NetBSD: asm.h,v 1.23 2000/06/23 12:18:45 kleink Exp $ */
/*
@@ -614,9 +614,13 @@ label: ASCIZ msg; \
ldgp gp, 0(reg)
/*
- * WEAK_ALIAS: create a weak alias (ELF only).
+ * STRONG_ALIAS, WEAK_ALIAS
+ * Create a strong or weak alias.
*/
#ifdef __ELF__
+#define STRONG_ALIAS(alias,sym) \
+ .global alias; \
+ alias = sym
#define WEAK_ALIAS(alias,sym) \
.weak alias; \
alias = sym