From c0abe5265748358b379a717bbfbc14ff6ff68d6b Mon Sep 17 00:00:00 2001 From: mrg Date: Mon, 27 Dec 2004 00:47:57 +0000 Subject: [PATCH] "@" is a comment char on arm. these tests have always failed to pass the `@progbits' part to obj_elf_section()... but in 2.15 obj_elf_section() gained a demand_empty_rest_of_line(), and the trailing ", " tripped this up. we can (and now do) use ``"progbits"'' instead of ``@progbits''. --- regress/lib/csu/initfini/arch/arm/initfini_asm.S | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/regress/lib/csu/initfini/arch/arm/initfini_asm.S b/regress/lib/csu/initfini/arch/arm/initfini_asm.S index 61de42bdb642..359910db595a 100644 --- a/regress/lib/csu/initfini/arch/arm/initfini_asm.S +++ b/regress/lib/csu/initfini/arch/arm/initfini_asm.S @@ -1,4 +1,4 @@ -/* $NetBSD: initfini_asm.S,v 1.1 2001/07/17 06:40:25 matt Exp $ */ +/* $NetBSD: initfini_asm.S,v 1.2 2004/12/27 00:47:57 mrg Exp $ */ /* * This file placed in the public domain. @@ -7,10 +7,10 @@ #include - .section .init, "ax", @progbits + .section .init, "ax", "progbits" bl _C_LABEL(i_am_init) .previous - .section .fini, "ax", @progbits + .section .fini, "ax", "progbits" bl _C_LABEL(i_am_fini) .previous