aboutsummaryrefslogtreecommitdiff
path: root/gas/config/tc-alpha.c
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2010-09-16 23:55:10 +0000
committerAlan Modra <amodra@gmail.com>2010-09-16 23:55:10 +0000
commit8f3bae45202d47cc88273b0060a458841cd46282 (patch)
treed4787efeb6e0b9decb4271af7a13af17c121d598 /gas/config/tc-alpha.c
parent1558ab4ce71d8db60e2897fc2ea8a963ded878dd (diff)
downloadgdb-8f3bae45202d47cc88273b0060a458841cd46282.zip
gdb-8f3bae45202d47cc88273b0060a458841cd46282.tar.gz
gdb-8f3bae45202d47cc88273b0060a458841cd46282.tar.bz2
PR gas/12011
* config/obj-elf.c (obj_elf_parse_section_letters): Correct test for error return from md_elf_section_letter. * config/tc-alpha.c (alpha_elf_section_letter): Correct error message. * config/tc-i386.c (x86_64_section_letter): Likewise. * config/tc-ia64.c (ia64_elf_section_letter): Likewise. * config/tc-mep.c (mep_elf_section_letter): Likewise. * gas/elf/bad-section-flag.d, * gas/elf/bad-section-flag.err, * gas/elf/bad-section-flag.s: New test. * gas/elf/elf.exp: Run it.
Diffstat (limited to 'gas/config/tc-alpha.c')
-rw-r--r--gas/config/tc-alpha.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gas/config/tc-alpha.c b/gas/config/tc-alpha.c
index 3cfca20..bd0a44f 100644
--- a/gas/config/tc-alpha.c
+++ b/gas/config/tc-alpha.c
@@ -5364,7 +5364,7 @@ alpha_elf_section_letter (int letter, char **ptr_msg)
if (letter == 's')
return SHF_ALPHA_GPREL;
- *ptr_msg = _("Bad .section directive: want a,s,w,x,M,S,G,T in string");
+ *ptr_msg = _("bad .section directive: want a,s,w,x,M,S,G,T in string");
return -1;
}