Module Name:    src
Committed By:   chs
Date:           Sun May 15 15:26:04 UTC 2016

Modified Files:
        src/sys/arch/i386/include: asm.h

Log Message:
define ALTENTRY(), needed by dtrace.


To generate a diff of this commit:
cvs rdiff -u -r1.41 -r1.42 src/sys/arch/i386/include/asm.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/i386/include/asm.h
diff -u src/sys/arch/i386/include/asm.h:1.41 src/sys/arch/i386/include/asm.h:1.42
--- src/sys/arch/i386/include/asm.h:1.41	Thu Sep 12 15:36:17 2013
+++ src/sys/arch/i386/include/asm.h	Sun May 15 15:26:04 2016
@@ -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

Reply via email to