Module Name:    src
Committed By:   joerg
Date:           Sat Apr 12 21:26:45 UTC 2014

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

Log Message:
Add END() macro like most other archs have.


To generate a diff of this commit:
cvs rdiff -u -r1.19 -r1.20 src/sys/arch/sparc/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/sparc/include/asm.h
diff -u src/sys/arch/sparc/include/asm.h:1.19 src/sys/arch/sparc/include/asm.h:1.20
--- src/sys/arch/sparc/include/asm.h:1.19	Thu Sep 12 15:36:17 2013
+++ src/sys/arch/sparc/include/asm.h	Sat Apr 12 21:26:45 2014
@@ -1,4 +1,4 @@
-/*	$NetBSD: asm.h,v 1.19 2013/09/12 15:36:17 joerg Exp $ */
+/*	$NetBSD: asm.h,v 1.20 2014/04/12 21:26:45 joerg Exp $ */
 
 /*
  * Copyright (c) 1994 Allen Briggs
@@ -152,7 +152,7 @@
 #define	FUNC(name)		ASENTRY(name)
 #define RODATA(name)		.align 4; .text; .globl _C_LABEL(name); \
 				OTYPE(_C_LABEL(name)); _C_LABEL(name):
-
+#define	END(y)		.size y, . - y
 
 #define ASMSTR			.asciz
 

Reply via email to