This is the mail archive of the binutils@sourceware.org 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]

fix ld-scripts/defined.exp for targets that need .set


the Blackfin assembler does not support the syntax:
	symbol = value
instead we only support the .set syntax:
	.set symbol, value

from what i can see, the purpose of the test is to just make sure the symbol 
is properly set to the right value, so changing the syntax shouldnt affect 
this.  is there some crazy target that doesnt support the .set macro ?
-mike

2008-04-25  Mike Frysinger  <vapier@gentoo.org>

	* ld-scripts/defined.s: Use .set syntax rather than =.

Attachment: signature.asc
Description: This is a digitally signed message part.

2008-04-25  Mike Frysinger  <vapier@gentoo.org>

	* ld-scripts/defined.s: Use .set syntax rather than =.

Index: testsuite/ld-scripts/defined.s
===================================================================
RCS file: /cvs/src/src/ld/testsuite/ld-scripts/defined.s,v
retrieving revision 1.1.1.1
diff -u -p -r1.1.1.1 defined.s
--- testsuite/ld-scripts/defined.s	3 May 1999 07:29:09 -0000	1.1.1.1
+++ testsuite/ld-scripts/defined.s	26 Apr 2008 00:13:04 -0000
@@ -1,2 +1,2 @@
 	.globl	defined
-	defined	=	1
+	.set defined,	1

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