From b945f920cf58bfec5e9e0f279d274c5a67aaccaa Mon Sep 17 00:00:00 2001 From: "H.J. Lu" Date: Sun, 4 May 2003 06:52:38 +0000 Subject: [PATCH] 2003-05-03 H.J. Lu * gas/elf/symver.s: Use '%' instead of '@' in .type. * gas/elf/type.s: Likewise. --- gas/testsuite/ChangeLog | 5 +++++ gas/testsuite/gas/elf/symver.s | 2 +- gas/testsuite/gas/elf/type.s | 8 ++++---- 3 files changed, 10 insertions(+), 5 deletions(-) diff --git a/gas/testsuite/ChangeLog b/gas/testsuite/ChangeLog index d4436f4f5..df1893340 100644 --- a/gas/testsuite/ChangeLog +++ b/gas/testsuite/ChangeLog @@ -1,5 +1,10 @@ 2003-05-03 H.J. Lu + * gas/elf/symver.s: Use '%' instead of '@' in .type. + * gas/elf/type.s: Likewise. + +2003-05-03 H.J. Lu + * gas/elf/elf.exp (run_list_test): Support pipe for readelf. * gas/elf/type.e-m32r: Removed. diff --git a/gas/testsuite/gas/elf/symver.s b/gas/testsuite/gas/elf/symver.s index dd2315bfb..d53b13638 100644 --- a/gas/testsuite/gas/elf/symver.s +++ b/gas/testsuite/gas/elf/symver.s @@ -1,5 +1,5 @@ .data - .type x,@object + .type x,%object .size x,4 x: .word 12 diff --git a/gas/testsuite/gas/elf/type.s b/gas/testsuite/gas/elf/type.s index 1e5308692..fdb76467e 100644 --- a/gas/testsuite/gas/elf/type.s +++ b/gas/testsuite/gas/elf/type.s @@ -1,18 +1,18 @@ .text .size function,1 - .type function,@function + .type function,%function function: .byte 0x0 .data - .type object,@object + .type object,%object .size object,1 object: .byte 0x0 - .type tls_object,@tls_object + .type tls_object,%tls_object .size tls_object,1 tls_object: .byte 0x0 - .type notype,@notype + .type notype,%notype .size notype,1 notype: .byte 0x0 -- 2.11.4.GIT