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]

Re: binutils testsuite error on cygwin:


On Wed, May 02, 2007 at 02:22:28PM +0200, Christian Joensson wrote:
> On cygwin, current binutils, I get a failure like this:
> Assembler messages:
> /usr/local/src/trunk/src/binutils/testsuite/binutils-all/needed-by-reloc.s:4:
> Error: unknown pseudo-op: `.4byte'

	* binutils-all/needed-by-reloc.s: Use .long rather than .4byte.

Index: binutils/testsuite/binutils-all/needed-by-reloc.s
===================================================================
RCS file: /cvs/src/src/binutils/testsuite/binutils-all/needed-by-reloc.s,v
retrieving revision 1.1
diff -u -p -r1.1 needed-by-reloc.s
--- binutils/testsuite/binutils-all/needed-by-reloc.s	24 Apr 2007 10:56:58 -0000	1.1
+++ binutils/testsuite/binutils-all/needed-by-reloc.s	11 May 2007 07:13:40 -0000
@@ -1,7 +1,7 @@
         .globl foo
 
 	.data
-	.4byte	foo
+	.long	foo
         .text
 foo:
         .long 1

-- 
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]