Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/lib/csu/arm_elf %progbits, not @progbits (@ is a comment cha...



details:   https://anonhg.NetBSD.org/src/rev/9d516d6204ab
branches:  trunk
changeset: 520004:9d516d6204ab
user:      thorpej <thorpej%NetBSD.org@localhost>
date:      Tue Jan 01 01:36:21 2002 +0000

description:
%progbits, not @progbits (@ is a comment character in ARM assembly).

diffstat:

 lib/csu/arm_elf/dot_init.h |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 84f6702d884a -r 9d516d6204ab lib/csu/arm_elf/dot_init.h
--- a/lib/csu/arm_elf/dot_init.h        Tue Jan 01 01:31:06 2002 +0000
+++ b/lib/csu/arm_elf/dot_init.h        Tue Jan 01 01:36:21 2002 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: dot_init.h,v 1.1 2001/07/17 06:39:14 matt Exp $ */
+/* $NetBSD: dot_init.h,v 1.2 2002/01/01 01:36:21 thorpej Exp $ */
 
 /*-
  * Copyright (c) 2001 Ross Harvey
@@ -49,7 +49,7 @@
 
 #define        MD_SECTION_PROLOGUE(sect, entry_pt)             \
                __asm (                                 \
-               ".section "#sect",\"ax\",@progbits      \n"\
+               ".section "#sect",\"ax\",%progbits      \n"\
                "       .align  0                       \n"\
                #entry_pt":                             \n"\
                "mov    ip, sp                          \n"\
@@ -60,7 +60,7 @@
 
 #define        MD_SECTION_EPILOGUE(sect)                       \
                __asm (                                 \
-               ".section "#sect",\"ax\",@progbits      \n"\
+               ".section "#sect",\"ax\",%progbits      \n"\
                "ldmea  fp, {fp, sp, pc}                \n"\
                ".previous")
 



Home | Main Index | Thread Index | Old Index