Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch/mips/include Drop undocumented and redundant 0 argu...
details: https://anonhg.NetBSD.org/src/rev/8a68e1e60c99
branches: trunk
changeset: 329603:8a68e1e60c99
user: joerg <joerg%NetBSD.org@localhost>
date: Fri May 30 11:46:48 2014 +0000
description:
Drop undocumented and redundant 0 argument to .ent.
diffstat:
sys/arch/mips/include/asm.h | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diffs (36 lines):
diff -r d7d4d955bcfb -r 8a68e1e60c99 sys/arch/mips/include/asm.h
--- a/sys/arch/mips/include/asm.h Fri May 30 11:39:48 2014 +0000
+++ b/sys/arch/mips/include/asm.h Fri May 30 11:46:48 2014 +0000
@@ -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 @@
* 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 @@
* 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) \
Home |
Main Index |
Thread Index |
Old Index