From 7dc902cf7b9f2d6815df888a7ea9d27723b45995 Mon Sep 17 00:00:00 2001 From: joerg Date: Wed, 17 Sep 2014 16:49:20 +0000 Subject: [PATCH] Normal spelling is .asciz, so use that on MIPS too. --- sys/arch/mips/include/asm.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/arch/mips/include/asm.h b/sys/arch/mips/include/asm.h index 6ec57b6e5199..5891413ab1c9 100644 --- a/sys/arch/mips/include/asm.h +++ b/sys/arch/mips/include/asm.h @@ -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