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]

Testsuite fix


The arm assembler treats "@" as a comment character, so the
.function symbol, @function syntax doesn't work.

Fix below applied as obvious.

Paul

2005-02-11  Paul Brook  <paul@codesourcery.com>

 * ld-elf/symbol1w.s: Avoid usung @function syntax.

Index: ld/testsuite/ld-elf/symbol1w.s
===================================================================
RCS file: /var/cvsroot/src-cvs/src/ld/testsuite/ld-elf/symbol1w.s,v
retrieving revision 1.1
diff -u -p -r1.1 symbol1w.s
--- ld/testsuite/ld-elf/symbol1w.s 7 Feb 2005 02:46:15 -0000 1.1
+++ ld/testsuite/ld-elf/symbol1w.s 11 Feb 2005 16:51:39 -0000
@@ -1,7 +1,7 @@
  .section .gnu.warning.symbol1
  .asciz "witty one-liner"
  .text
- .type symbol1,@function
+ .type symbol1,"function"
  .global symbol1
 symbol1:
 .L1:


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