diff options
author | Steve Chamberlain <sac@cygnus> | 1992-08-05 19:05:43 +0000 |
---|---|---|
committer | Steve Chamberlain <sac@cygnus> | 1992-08-05 19:05:43 +0000 |
commit | 9e43698e16e7be7e352a611784ad5e2d20d1f5ef (patch) | |
tree | f40f399a2b3f0ba9248014d1bf485f473ed05dfc /gas | |
parent | 62594bd73c50c5659908a3cf3387604352688b5a (diff) | |
download | gdb-9e43698e16e7be7e352a611784ad5e2d20d1f5ef.zip gdb-9e43698e16e7be7e352a611784ad5e2d20d1f5ef.tar.gz gdb-9e43698e16e7be7e352a611784ad5e2d20d1f5ef.tar.bz2 |
* config/tc-m68k.c (md_pseudo_table): fix the .align thing
the right way; for just the 68k. Sun 3 .align is nbytes, not ptwo.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/config/tc-m68k.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gas/config/tc-m68k.c b/gas/config/tc-m68k.c index 7ccd003..b53333c 100644 --- a/gas/config/tc-m68k.c +++ b/gas/config/tc-m68k.c @@ -408,7 +408,8 @@ static int reverse_8_bits(); static int try_index(); static void install_gen_operand(); static void install_operand(); - void s_bss(); +void s_bss(); +void s_align_bytes(); static void s_data1(); static void s_data2(); static void s_even(); @@ -490,6 +491,7 @@ const pseudo_typeS md_pseudo_table[] = { { "even", s_even, 0 }, { "skip", s_space, 0 }, { "proc", s_proc, 0 }, + { "align", s_align_bytes, 0 }, { 0, 0, 0 } }; |