* config/tc-sh.c (md_pseudo_table): Add uaquad. Use s_uacons for

2byte, 4byte and 8byte.
This commit is contained in:
Alexandre Oliva 2001-02-09 18:21:42 +00:00
parent 069f40e56f
commit de68de201f
2 changed files with 13 additions and 3 deletions

View File

@ -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

View File

@ -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}
};