diff options
author | Nick Clifton <nickc@redhat.com> | 2007-10-04 17:05:37 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2007-10-04 17:05:37 +0000 |
commit | 38a57ae7a5cafb2eeca853494a6c2aa994efc956 (patch) | |
tree | cfb9b9ac767db4859052e315d77269ec398da808 /gas/config/tc-dlx.c | |
parent | 45d42143d489a6b7ee78fd118b573906c43ecb0b (diff) | |
download | ppe42-binutils-38a57ae7a5cafb2eeca853494a6c2aa994efc956.tar.gz ppe42-binutils-38a57ae7a5cafb2eeca853494a6c2aa994efc956.zip |
* read.c (potable): Add string8, string16, string32 and string64. Add bit size for stringer function.
(stringer_append_char): New.
(stringer): Use stringer_append_char().
* config/obj-coff.c (obj_coff_ident): Add bit size for stringer function.
* config/obj-elf.c (obj_elf_ident): Likewise.
* config/tc-alpha.c (s_alpha_stringer): Likewise.
* config/tc-dlx.c (dlx_pseudo_table): Likewise.
* config/tc-hppa.c (pa_stringer): Likewise.
* config/tc-ia64.c (md_pseudo_table, pseudo_opcode): Likewise.
* config/tc-m68hc11.c (md_pseudo_table): Likewise.
* config/tc-mcore.c (md_pseudo_table): Likewise.
* config/tc-mips.c (mips_pseudo_table): Likewise.
* config/tc-spu.c (md_pseudo_table): Likewise.
* config/tc-s390.c (md_pseudo_table): Likewise. Replace '2' by '1'.
* doc/as.texinfo (ABORT): Fix identing.
(String): Document new string8, string16, string32, string64 functions.
* NEWS: Mention the new feature.
* testsuite/gas/all/gas.exp: Include new test "strings".
* testsuite/gas/all/string.s: New
* testsuite/gas/all/string.d: New.
Diffstat (limited to 'gas/config/tc-dlx.c')
-rw-r--r-- | gas/config/tc-dlx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gas/config/tc-dlx.c b/gas/config/tc-dlx.c index 1c751dbc83..e4291667d6 100644 --- a/gas/config/tc-dlx.c +++ b/gas/config/tc-dlx.c @@ -1276,7 +1276,7 @@ const pseudo_typeS dlx_pseudo_table[] = { /* Some additional ops that are used by gcc-dlx. */ - {"asciiz", stringer, 1}, + {"asciiz", stringer, 8 + 1}, {"half", cons, 2}, {"dword", cons, 8}, {"word", cons, 4}, |