Module Name:    src
Committed By:   joerg
Date:           Fri May 30 11:46:48 UTC 2014

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

Log Message:
Drop undocumented and redundant 0 argument to .ent.


To generate a diff of this commit:
cvs rdiff -u -r1.46 -r1.47 src/sys/arch/mips/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/mips/include/asm.h
diff -u src/sys/arch/mips/include/asm.h:1.46 src/sys/arch/mips/include/asm.h:1.47
--- src/sys/arch/mips/include/asm.h:1.46	Thu Nov 10 00:37:38 2011
+++ src/sys/arch/mips/include/asm.h	Fri May 30 11:46:48 2014
@@ -1,4 +1,4 @@
-/*	$NetBSD: asm.h,v 1.46 2011/11/10 00:37:38 joerg Exp $	*/
+/*	$NetBSD: asm.h,v 1.47 2014/05/30 11:46:48 joerg Exp $	*/
 
 /*
  * Copyright (c) 1992, 1993
@@ -117,7 +117,7 @@
  *	No profilable local leaf routine.
  */
 #define	STATIC_LEAF_NOPROFILE(x)	\
-	.ent	_C_LABEL(x), 0;		\
+	.ent	_C_LABEL(x);		\
 _C_LABEL(x): ;				\
 	.frame sp, 0, ra
 
@@ -169,7 +169,7 @@ _C_LABEL(x):
  *	No profilable local nested routine.
  */
 #define	STATIC_NESTED_NOPROFILE(x, fsize, retpc)	\
-	.ent	_C_LABEL(x), 0;			\
+	.ent	_C_LABEL(x);			\
 _C_LABEL(x): ;					\
 	.frame	sp, fsize, retpc
 
@@ -234,7 +234,7 @@ _C_LABEL(x):
  *	XXX: regmask should be used to generate .mask
  */
 #define	VECTOR(x, regmask)		\
-	.ent	_C_LABEL(x),0;		\
+	.ent	_C_LABEL(x);		\
 	EXPORT(x);			\
 
 #define	VECTOR_END(x)			\

Reply via email to