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]

[03/11] TI C6X binutils port: gas/testsuite/gas/macros/dot.s


Because of peculiarities of C6X assembly syntax, I made the assembler
preserve some spaces among operands of instructions (and thus
directives).

This broke the test gas/macros/dot.s, which fails if the assembler
preprocessor does not remove those spaces.  The removal of those
spaces is nothing to do with what that test is actually testing, so
this patch removes them in the .s file so the dump does not have the
spaces whether or not they get preserved for a particular target.

2010-03-23  Joseph Myers  <joseph@codesourcery.com>

	* gas/macros/dot.s: Remove space in .byte operands.

Index: gas/testsuite/gas/macros/dot.s
===================================================================
RCS file: /cvs/src/src/gas/testsuite/gas/macros/dot.s,v
retrieving revision 1.3
diff -u -r1.3 dot.s
--- gas/testsuite/gas/macros/dot.s	15 Oct 2009 10:58:34 -0000	1.3
+++ gas/testsuite/gas/macros/dot.s	23 Mar 2010 02:41:10 -0000
@@ -2,12 +2,12 @@
 
  .macro x.y.z val
   .align 4
-  .byte val, val
+  .byte val,val
  .endm
 
  .macro .xyz val
   .align 8
-  .byte val, val
+  .byte val,val
  .endm
 
  .macro .macro

-- 
Joseph S. Myers
joseph@codesourcery.com


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