* config/tc-tic80 (md_pseudo_table): Add align pseudo op to do
authorFred Fish <fnf@specifix.com>
Thu, 27 Feb 1997 22:55:12 +0000 (22:55 +0000)
committerFred Fish <fnf@specifix.com>
Thu, 27 Feb 1997 22:55:12 +0000 (22:55 +0000)
byte alignment rather than power-of-two alignment that is the
GAS default.

gas/ChangeLog
gas/config/tc-tic80.c

index 78fd6ea9b900ae01dcf04b9d18572807f50ada8c..1c18e5249b540974ab9002650f43fe2fa54a03c5 100644 (file)
@@ -1,3 +1,11 @@
+start-sanitize-tic80
+Thu Feb 27 15:39:16 1997  Fred Fish  <fnf@cygnus.com>
+
+       * 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.
+
+end-sanitize-tic80
 Thu Feb 27 13:29:04 1997  Ian Lance Taylor  <ian@cygnus.com>
 
        * config/tc-m68k.c (md_assemble): Handle a reloc width of 'W'.n
index 6f18d44571c683370875fb4c60b49d8f47f62b69..87a4791b43d4a1ea01218b757b8671784a771d55 100644 (file)
@@ -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 }
 };