diff options
author | Fred Fish <fnf@specifix.com> | 1997-02-27 22:55:12 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 1997-02-27 22:55:12 +0000 |
commit | a88ce21e33d7d60d8db3e84aa9455b63a974b8f6 (patch) | |
tree | 6d9ff2284bb3822bf58d3fad322bc06d97f2bf90 /gas/config/tc-tic80.c | |
parent | b434a5b9d35797ac754f8af0c11f3030f9a3a0ba (diff) | |
download | gdb-a88ce21e33d7d60d8db3e84aa9455b63a974b8f6.zip gdb-a88ce21e33d7d60d8db3e84aa9455b63a974b8f6.tar.gz gdb-a88ce21e33d7d60d8db3e84aa9455b63a974b8f6.tar.bz2 |
* config/tc-tic80 (md_pseudo_table): Add align pseudo op to do
byte alignment rather than power-of-two alignment that is the
GAS default.
Diffstat (limited to 'gas/config/tc-tic80.c')
-rw-r--r-- | gas/config/tc-tic80.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gas/config/tc-tic80.c b/gas/config/tc-tic80.c index 6f18d44..87a4791 100644 --- a/gas/config/tc-tic80.c +++ b/gas/config/tc-tic80.c @@ -57,7 +57,8 @@ const char FLT_CHARS[] = "fF"; const pseudo_typeS md_pseudo_table[] = { - { "word", cons, 4 }, /* FIXME: Should this be machine independent? */ + { "align", s_align_bytes, 4 }, /* Do byte alignment, default is a 4 byte boundary */ + { "word", cons, 4 }, /* FIXME: Should this be machine independent? */ { "bss", s_lcomm, 1 }, { NULL, NULL, 0 } }; |