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: Another PA GAS testsuite fix


On Fri, Dec 07, 2001 at 09:46:00AM -0700, law@redhat.com wrote:
>   > PASS: incbin
> Actually, I don't see how this could possibly be working under PA-linux;
> incbin.s is mal-formed PA assembly syntax.  Anything in column zero is a
> label.
> 
> I'm curious how this test is managing to pass...

Hmm, pa-linux _doesn't_ define LABELS_WITHOUT_COLONS.  I'd forgotten
that we didn't want that particular misfeature for linux.  :)

incbin.s needs fixing though.

 	* gas/all/incbin.s: Add spaces before directives.

Index: gas/all/incbin.s
===================================================================
RCS file: /cvs/src/src/gas/testsuite/gas/all/incbin.s,v
retrieving revision 1.1
diff -u -p -r1.1 incbin.s
--- incbin.s    2001/07/09 08:19:18     1.1
+++ incbin.s    2001/12/08 00:24:36
@@ -1,5 +1,5 @@
-.data
-.incbin "incbin.s"
-.incbin "incbin.s",0,28
-.incbin "incbin.s",15,9
-.p2align 4
+ .data
+ .incbin "incbin.s"
+ .incbin "incbin.s",0,28
+ .incbin "incbin.s",15,9
+ .p2align 4

Alan


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