* config/tc-mips.c (md_pseudo_table): Add all data allocation

pseudo-ops: .hword, .int, .long, .octa, .quad, .short, .single.
This commit is contained in:
Ian Lance Taylor 1994-01-20 04:18:14 +00:00
parent 7e7fb4a834
commit eb8fd0e9b4
2 changed files with 12 additions and 0 deletions

View 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

View 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},