diff options
author | Alexandre Oliva <aoliva@redhat.com> | 2001-02-09 18:21:42 +0000 |
---|---|---|
committer | Alexandre Oliva <aoliva@redhat.com> | 2001-02-09 18:21:42 +0000 |
commit | de68de201f0696f3c6df05c00b12a062eb0f7578 (patch) | |
tree | e88307df2543202fb5f7742466697bde36898c62 | |
parent | 069f40e56f8ac85845312a4366afff828b026b7a (diff) | |
download | gdb-de68de201f0696f3c6df05c00b12a062eb0f7578.zip gdb-de68de201f0696f3c6df05c00b12a062eb0f7578.tar.gz gdb-de68de201f0696f3c6df05c00b12a062eb0f7578.tar.bz2 |
* config/tc-sh.c (md_pseudo_table): Add uaquad. Use s_uacons for
2byte, 4byte and 8byte.
-rw-r--r-- | gas/ChangeLog | 5 | ||||
-rw-r--r-- | gas/config/tc-sh.c | 11 |
2 files changed, 13 insertions, 3 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 8824fe5..c6babbe 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2001-02-09 Alexandre Oliva <aoliva@redhat.com> + + * config/tc-sh.c (md_pseudo_table): Add uaquad. Use s_uacons for + 2byte, 4byte and 8byte. + 2001-02-08 Alan Modra <alan@linuxcare.com.au> * config/tc-hppa.c (pa_build_unwind_subspace): Don't call diff --git a/gas/config/tc-sh.c b/gas/config/tc-sh.c index 275415a..6f35784 100644 --- a/gas/config/tc-sh.c +++ b/gas/config/tc-sh.c @@ -1,5 +1,6 @@ /* tc-sh.c -- Assemble code for the Hitachi Super-H - Copyright (C) 1993, 94, 95, 96, 97, 98, 99, 2000 Free Software Foundation. + Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001 + Free Software Foundation. This file is part of GAS, the GNU Assembler. @@ -92,8 +93,12 @@ const pseudo_typeS md_pseudo_table[] = {"uses", s_uses, 0}, {"uaword", s_uacons, 2}, {"ualong", s_uacons, 4}, - { "file", dwarf2_directive_file, 0 }, - { "loc", dwarf2_directive_loc, 0 }, + {"uaquad", s_uacons, 8}, + {"2byte", s_uacons, 2}, + {"4byte", s_uacons, 4}, + {"8byte", s_uacons, 8}, + {"file", dwarf2_directive_file, 0 }, + {"loc", dwarf2_directive_loc, 0 }, {0, 0, 0} }; |