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 Normal spelling is .asciz, so use that...



details:   https://anonhg.NetBSD.org/src/rev/90670883201e
branches:  trunk
changeset: 802499:90670883201e
user:      joerg <joerg%NetBSD.org@localhost>
date:      Wed Sep 17 16:49:20 2014 +0000

description:
Normal spelling is .asciz, so use that on MIPS too.

diffstat:

 sys/arch/mips/include/asm.h |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (23 lines):

diff -r 6986567feb12 -r 90670883201e sys/arch/mips/include/asm.h
--- a/sys/arch/mips/include/asm.h       Wed Sep 17 16:43:31 2014 +0000
+++ b/sys/arch/mips/include/asm.h       Wed Sep 17 16:49:20 2014 +0000
@@ -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 @@
 
 #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



Home | Main Index | Thread Index | Old Index