diff options
author | Jeff Law <law@redhat.com> | 1996-10-23 22:23:38 +0000 |
---|---|---|
committer | Jeff Law <law@redhat.com> | 1996-10-23 22:23:38 +0000 |
commit | 7e96935e77ef4cedcee265010934229b7a873aee (patch) | |
tree | f23f7f25a622127ffad0f61189323b5d45b28811 /gas | |
parent | 4ad9452c462b736b2625a2154e94507c536ec54c (diff) | |
download | gdb-7e96935e77ef4cedcee265010934229b7a873aee.zip gdb-7e96935e77ef4cedcee265010934229b7a873aee.tar.gz gdb-7e96935e77ef4cedcee265010934229b7a873aee.tar.bz2 |
* config/tc-v850.c (md_pseudo_table): Add .word; allocates
4 bytes of space.
Something off the todo list.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 5 | ||||
-rw-r--r-- | gas/config/tc-v850.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index ee32278..44bc137 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,4 +1,9 @@ start-sanitize-v850 +Wed Oct 23 16:21:28 1996 Jeffrey A Law (law@cygnus.com) + + * config/tc-v850.c (md_pseudo_table): Add .word; allocates + 4 bytes of space. + Tue Oct 22 22:01:25 1996 Jeffrey A Law (law@cygnus.com) * config/tc-v850.c (md_assemble): Handle TDAOFF relocs diff --git a/gas/config/tc-v850.c b/gas/config/tc-v850.c index b37bc2b..cab16ee 100644 --- a/gas/config/tc-v850.c +++ b/gas/config/tc-v850.c @@ -84,6 +84,7 @@ size_t md_longopts_size = sizeof(md_longopts); /* The target specific pseudo-ops which we support. */ const pseudo_typeS md_pseudo_table[] = { + {"word", cons, 4}, { NULL, NULL, 0 } }; |