summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorchs <chs@NetBSD.org>2016-05-15 15:26:04 +0000
committerchs <chs@NetBSD.org>2016-05-15 15:26:04 +0000
commit5f6e50e5850915fbbdc90be5b47c378a61728e18 (patch)
treec494743186edf7e217ac82863bf4472c580d62b6 /sys
parent82538849799b07debcac0ff8b5b444dcf7945527 (diff)
define ALTENTRY(), needed by dtrace.
Diffstat (limited to 'sys')
-rw-r--r--sys/arch/i386/include/asm.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/i386/include/asm.h b/sys/arch/i386/include/asm.h
index 149cf222044..c67f27849ad 100644
--- a/sys/arch/i386/include/asm.h
+++ b/sys/arch/i386/include/asm.h
@@ -1,4 +1,4 @@
-/* $NetBSD: asm.h,v 1.41 2013/09/12 15:36:17 joerg Exp $ */
+/* $NetBSD: asm.h,v 1.42 2016/05/15 15:26:04 chs Exp $ */
/*-
* Copyright (c) 1990 The Regents of the University of California.
@@ -173,6 +173,7 @@
#define ENTRY(y) _ENTRY(_C_LABEL(y)); _PROF_PROLOGUE
#define NENTRY(y) _ENTRY(_C_LABEL(y))
+#define ALTENTRY(x) NENTRY(x)
#define ASENTRY(y) _ENTRY(_ASM_LABEL(y)); _PROF_PROLOGUE
#define LABEL(y) _LABEL(_C_LABEL(y))
#define END(y) .size y, . - y