diff options
-rw-r--r-- | sys/arch/sh/include/asm.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/sh/include/asm.h b/sys/arch/sh/include/asm.h index 2ed7ce2eb2f..2ab2b3cff9c 100644 --- a/sys/arch/sh/include/asm.h +++ b/sys/arch/sh/include/asm.h @@ -1,4 +1,4 @@ -/* $OpenBSD: asm.h,v 1.7 2017/06/29 17:36:16 deraadt Exp $ */ +/* $OpenBSD: asm.h,v 1.8 2018/11/11 20:15:24 guenther Exp $ */ /* $NetBSD: asm.h,v 1.25 2006/01/20 22:02:40 christos Exp $ */ /*- @@ -78,6 +78,8 @@ #define NENTRY(y) _ENTRY(_C_LABEL(y)) #define ASENTRY(y) _ENTRY(_ASM_LABEL(y)) _PROF_PROLOGUE +#define END(y) .size y, . - y + #define SET_ENTRY_SIZE(y) \ .size _C_LABEL(y), . - _C_LABEL(y) |