* config/tc-mips.c (md_pseudo_table): Add all data allocation
authorIan Lance Taylor <ian@airs.com>
Thu, 20 Jan 1994 04:18:14 +0000 (04:18 +0000)
committerIan Lance Taylor <ian@airs.com>
Thu, 20 Jan 1994 04:18:14 +0000 (04:18 +0000)
pseudo-ops: .hword, .int, .long, .octa, .quad, .short, .single.

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

index 05bc6e0fec48ed9dbcc0a3286157ce119c49500e..e265f6c5ebdbc45796119af04d9da8ed0ae54517 100644 (file)
@@ -1,3 +1,8 @@
+Wed Jan 19 23:15:24 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
+
+       * config/tc-mips.c (md_pseudo_table): Add all data allocation
+       pseudo-ops: .hword, .int, .long, .octa, .quad, .short, .single.
+
 Tue Jan 18 15:51:59 1994  Steve Chamberlain  (sac@jonny.cygnus.com)
 
        * config/obj-coffbfd.c (obj_coff_endef): For C_EFCN, C_BLOCK and
index 4fbd817ef4ea6710341fae0a2066026148c0401b..36e7850610f65dd6ba52f69d037f14c57fdd9399 100644 (file)
@@ -401,6 +401,13 @@ const pseudo_typeS md_pseudo_table[] =
   {"double", s_float_cons, 'd'},
   {"extern", s_extern, 0},
   {"float", s_float_cons, 'f'},
+  {"hword", s_cons, 1},
+  {"int", s_cons, 2},
+  {"long", s_cons, 2},
+  {"octa", s_cons, 4},
+  {"quad", s_cons, 3},
+  {"short", s_cons, 1},
+  {"single", s_float_cons, 'f'},
   {"space", s_mips_space, 0},
   {"text", s_change_sec, 't'},
   {"word", s_cons, 2},
This page took 0.032534 seconds and 4 git commands to generate.