Module Name: src
Committed By: joerg
Date: Wed Sep 17 16:49:20 UTC 2014
Modified Files:
src/sys/arch/mips/include: asm.h
Log Message:
Normal spelling is .asciz, so use that on MIPS too.
To generate a diff of this commit:
cvs rdiff -u -r1.47 -r1.48 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.47 src/sys/arch/mips/include/asm.h:1.48
--- src/sys/arch/mips/include/asm.h:1.47 Fri May 30 11:46:48 2014
+++ src/sys/arch/mips/include/asm.h Wed Sep 17 16:49:20 2014
@@ -1,4 +1,4 @@
-/* $NetBSD: asm.h,v 1.47 2014/05/30 11:46:48 joerg Exp $ */
+/* $NetBSD: asm.h,v 1.48 2014/09/17 16:49:20 joerg Exp $ */
/*
* Copyright (c) 1992, 1993
@@ -259,11 +259,11 @@ _C_LABEL(x):
#define MSG(msg) \
.rdata; \
-9: .asciiz msg; \
+9: .asciz msg; \
.text
#define ASMSTR(str) \
- .asciiz str; \
+ .asciz str; \
.align 3
#define RCSID(name) .pushsection ".ident"; .asciz name; .popsection