From 8f30837fd7d3291cf7debaad19451a6847c91b28 Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Mon, 20 Dec 2004 15:35:53 +0000 Subject: [PATCH] * gas/elf/section5.[ls]: Use % instead of @ in .section directives. --- gas/testsuite/ChangeLog | 5 +++++ gas/testsuite/gas/elf/section5.l | 12 ++++++------ gas/testsuite/gas/elf/section5.s | 12 ++++++------ 3 files changed, 17 insertions(+), 12 deletions(-) diff --git a/gas/testsuite/ChangeLog b/gas/testsuite/ChangeLog index 3b19181a7..11c7d9ddd 100644 --- a/gas/testsuite/ChangeLog +++ b/gas/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2004-12-20 Nick Clifton + + * gas/elf/section5.[ls]: Use % instead of @ in .section + directives. + 2004-12-16 Richard Sandiford * gas/v850/split-lo16.{s,d}: New test. diff --git a/gas/testsuite/gas/elf/section5.l b/gas/testsuite/gas/elf/section5.l index 76e9e4ffb..82a1b4b2f 100644 --- a/gas/testsuite/gas/elf/section5.l +++ b/gas/testsuite/gas/elf/section5.l @@ -12,18 +12,18 @@ [ ]+[[:digit:]]+[ ]+.section[ ]+.test0[ ]* -[ ]+[[:digit:]]+[ ]+.section[ ]+.test1,[ ]*"",[ ]*@progbits[ ]* +[ ]+[[:digit:]]+[ ]+.section[ ]+.test1,[ ]*"",[ ]*%progbits[ ]* [ ]+[[:digit:]]+[ ]+.section[ ]+.test2[ ]* [ ]+[[:digit:]]+[ ]+.section[ ]+.test3,[ ]*"aw"[ ]* -[ ]+[[:digit:]]+[ ]+.section[ ]+.test4,[ ]*"aw",[ ]*@nobits[ ]* +[ ]+[[:digit:]]+[ ]+.section[ ]+.test4,[ ]*"aw",[ ]*%nobits[ ]* [ ]+[[:digit:]]+[ ]* -[ ]+[[:digit:]]+[ ]+.section[ ]+.test1,[ ]*"aw",[ ]*@nobits[ ]* +[ ]+[[:digit:]]+[ ]+.section[ ]+.test1,[ ]*"aw",[ ]*%nobits[ ]* [ ]+[[:digit:]]+[ ]+.* [ ]+[[:digit:]]+[ ]* [ ]+[[:digit:]]+[ ]+.section[ ]+.test2,[ ]*"w"[ ]* [ ]+[[:digit:]]+[ ]+.* [ ]+[[:digit:]]+[ ]* -[ ]+[[:digit:]]+[ ]+.section[ ]+.test3,[ ]*"aw",[ ]*@progbits[ ]* +[ ]+[[:digit:]]+[ ]+.section[ ]+.test3,[ ]*"aw",[ ]*%progbits[ ]* [ ]+[[:digit:]]+[ ]+.* [ ]+[[:digit:]]+[ ]* [ ]+[[:digit:]]+[ ]+.section[ ]+.test4,[ ]*"aw"[ ]* @@ -32,6 +32,6 @@ [ ]+[[:digit:]]+[ ]* [ ]+[[:digit:]]+[ ]+.section[ ]+.bss,[ ]*"a"[ ]* [ ]+[[:digit:]]+[ ]* -[ ]+[[:digit:]]+[ ]+.section[ ]+.data,[ ]*"aw",[ ]*@nobits[ ]* +[ ]+[[:digit:]]+[ ]+.section[ ]+.data,[ ]*"aw",[ ]*%nobits[ ]* [ ]+[[:digit:]]+[ ]* -[ ]+[[:digit:]]+[ ]+.section[ ]+.bss,[ ]*"aw",[ ]*@progbits[ ]* +[ ]+[[:digit:]]+[ ]+.section[ ]+.bss,[ ]*"aw",[ ]*%progbits[ ]* diff --git a/gas/testsuite/gas/elf/section5.s b/gas/testsuite/gas/elf/section5.s index 866af52be..c5e6c7ace 100644 --- a/gas/testsuite/gas/elf/section5.s +++ b/gas/testsuite/gas/elf/section5.s @@ -1,16 +1,16 @@ .section .test0 -.section .test1, "", @progbits +.section .test1, "", %progbits .section .test2 .section .test3, "aw" -.section .test4, "aw", @nobits +.section .test4, "aw", %nobits -.section .test1, "aw", @nobits +.section .test1, "aw", %nobits test1: .long test1 .section .test2, "w" test2: .long test2 -.section .test3, "aw", @progbits +.section .test3, "aw", %progbits test3: .long test3 .section .test4, "aw" @@ -19,6 +19,6 @@ test3: .long test3 .section .bss, "a" -.section .data, "aw", @nobits +.section .data, "aw", %nobits -.section .bss, "aw", @progbits +.section .bss, "aw", %progbits -- 2.11.4.GIT