diff options
author | Per Bothner <per@bothner.com> | 1992-08-10 21:40:49 +0000 |
---|---|---|
committer | Per Bothner <per@bothner.com> | 1992-08-10 21:40:49 +0000 |
commit | bec66218fc001d5432630c0c743f22f387b16e41 (patch) | |
tree | 3bfd3188c99d50e5f5de134685e42cf1104e07a9 | |
parent | 671450818af171e95039e07089ba13b3d05d81c7 (diff) | |
download | gdb-bec66218fc001d5432630c0c743f22f387b16e41.zip gdb-bec66218fc001d5432630c0c743f22f387b16e41.tar.gz gdb-bec66218fc001d5432630c0c743f22f387b16e41.tar.bz2 |
* tc-m68k.c: ".align N" means align to N-byte boundary *only*
if TN_SUN3; otherwise align to 2**N-byte bounary.
-rw-r--r-- | gas/config/ChangeLog | 5 | ||||
-rw-r--r-- | gas/config/tc-m68k.c | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/gas/config/ChangeLog b/gas/config/ChangeLog index 3d7c73a..041fbd2 100644 --- a/gas/config/ChangeLog +++ b/gas/config/ChangeLog @@ -1,3 +1,8 @@ +Mon Aug 10 14:37:08 1992 Per Bothner (bothner@cygnus.com) + + * tc-m68k.c: ".align N" means align to N-byte boundary *only* + if TN_SUN3; otherwise align to 2**N-byte bounary. + Thu Aug 6 12:08:42 1992 Steve Chamberlain (sac@thepub.cygnus.com) * config/tc-h8300.c: if a :8 is seen after an operand, fill top diff --git a/gas/config/tc-m68k.c b/gas/config/tc-m68k.c index b53333c..ff18227 100644 --- a/gas/config/tc-m68k.c +++ b/gas/config/tc-m68k.c @@ -491,7 +491,9 @@ const pseudo_typeS md_pseudo_table[] = { { "even", s_even, 0 }, { "skip", s_space, 0 }, { "proc", s_proc, 0 }, +#ifdef TE_SUN3 { "align", s_align_bytes, 0 }, +#endif { 0, 0, 0 } }; |