* config/tc-tic80.c (md_pseudo_table): Add "sect" and "section"
authorFred Fish <fnf@specifix.com>
Wed, 5 Mar 1997 06:18:28 +0000 (06:18 +0000)
committerFred Fish <fnf@specifix.com>
Wed, 5 Mar 1997 06:18:28 +0000 (06:18 +0000)
pseudo-ops.

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

index c4d0c02c8612f806f8192e266b1f6be16a52f7c3..acc387e63e133314ffd3bfc8486c8547bdf58267 100644 (file)
@@ -1,6 +1,8 @@
 start-sanitize-tic80
 Tue Mar  4 19:34:21 1997  Fred Fish  <fnf@cygnus.com>
 
+       * config/tc-tic80.c (md_pseudo_table): Add "sect" and "section"
+       pseudo-ops.
        * config/tc-tic80.c (md_begin): Declare external variable
        coff_flags and insert an F_AR32WR bit into it.
 
index 8dcf181bbdf30e192b633879edec1f79539c1cb6..bb7b527c03dd59fa8ea97b2c530f65052108850e 100644 (file)
@@ -55,12 +55,16 @@ const char FLT_CHARS[] = "fF";
    function to call to execute this pseudo-op
    integer arg to pass to the function */
 
+extern void obj_coff_section ();
+
 const pseudo_typeS md_pseudo_table[] =
 {
-  { "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 }
+  { "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 },
+  { "sect",    obj_coff_section,       0},     /* For compatibility with TI tools */
+  { "section", obj_coff_section,       0},     /* Standard COFF .section pseudo-op */
+  { NULL,      NULL,                   0 }
 };
 
 /* Opcode hash table.  */
This page took 0.032086 seconds and 4 git commands to generate.