* config/tc-sh.c (md_pseudo_table): Add uaquad. Use s_uacons for
authorAlexandre Oliva <aoliva@redhat.com>
Fri, 9 Feb 2001 18:21:42 +0000 (18:21 +0000)
committerAlexandre Oliva <aoliva@redhat.com>
Fri, 9 Feb 2001 18:21:42 +0000 (18:21 +0000)
2byte, 4byte and 8byte.

gas/ChangeLog
gas/config/tc-sh.c

index 8824fe5356c9169c3766650123cdc73d2009dd42..c6babbeb308bd569b4055c090cfc11de51dc991c 100644 (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
index 275415aeb90812551b9def18d53f16a82d447e7e..6f357848e2f8f832bd6104af205b9770f1b486de 100644 (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}
 };
 
This page took 0.031594 seconds and 4 git commands to generate.