This is the mail archive of the binutils@sources.redhat.com mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: revised linker testsuite patch


On Fri, Nov 08, 2002 at 03:06:05PM -0500, Scott Bambrough wrote:
> --- src.orig/ld/testsuite/ld-elfvsb/define.s    Mon Nov 19 15:32:02 2001
> +++ src/ld/testsuite/ld-elfvsb/define.s Wed Oct 30 21:01:17 2002
> @@ -1,10 +1,10 @@
>         .data
>         .globl protected
> -       .type protected,@object
> +       .type protected,%object

$ grep comment_chars *.[ch] | grep %
tc-mmix.c:const char mmix_comment_chars[] = "%!";

I think we'd better go with this one.

	* ld-elfvsb/define.s: Avoid use of @ in .type directive.

Applied.

Index: ld/testsuite/ld-elfvsb/define.s
===================================================================
RCS file: /cvs/src/src/ld/testsuite/ld-elfvsb/define.s,v
retrieving revision 1.2
diff -u -p -r1.2 define.s
--- ld/testsuite/ld-elfvsb/define.s	19 Nov 2001 20:32:02 -0000	1.2
+++ ld/testsuite/ld-elfvsb/define.s	9 Nov 2002 11:56:11 -0000
@@ -1,10 +1,10 @@
 	.data
 	.globl protected
-	.type protected,@object
+	.type protected,"object"
 protected:
 	.globl hidden
-	.type hidden,@object
+	.type hidden,"object"
 hidden:
 	.globl internal
-	.type internal,@object
+	.type internal,"object"
 internal:

-- 
Alan Modra
IBM OzLabs - Linux Technology Centre


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]