* config/tc-mips.c (md_parse_option): #ifdef the
authorThiemo Seufer <ths@networkno.de>
Tue, 21 Aug 2001 00:59:48 +0000 (00:59 +0000)
committerThiemo Seufer <ths@networkno.de>
Tue, 21 Aug 2001 00:59:48 +0000 (00:59 +0000)
traditional/non-traditional names as it is done in mips_target_format.

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

index 1b7503af2000fed0184d203b1e4d95aeaaf34144..526d5dff36a1da8a364d2df76b75c3bb6ef548cf 100644 (file)
@@ -1,3 +1,8 @@
+2001-08-21  Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
+
+       * config/tc-mips.c (md_parse_option): #ifdef the
+       traditional/non-traditional names as it is done in mips_target_format.
+
 2001-08-20  Richard Henderson  <rth@redhat.com>
 
        * config/tc-alpha.h (MD_APPLY_FIX3): Define.
index 01ece421fcc1d5e426a3020a03d5215750f65349..b666ed95d3563455042977dd0be29c622f5ea8c8 100644 (file)
@@ -9206,10 +9206,14 @@ md_parse_option (c, arg)
 
        list = bfd_target_list ();
        for (l = list; *l != NULL; l++)
-         if (strcmp (*l, "elf64-bigmips") == 0
-             || strcmp (*l, "elf64-littlemips") == 0
-             || strcmp (*l, "elf64-tradbigmips") == 0
+#ifdef TE_TMIPS
+         /* This is traditional mips */
+         if (strcmp (*l, "elf64-tradbigmips") == 0
              || strcmp (*l, "elf64-tradlittlemips") == 0)
+#else
+         if (strcmp (*l, "elf64-bigmips") == 0
+             || strcmp (*l, "elf64-littlemips") == 0)
+#endif
            break;
        if (*l == NULL)
          as_fatal (_("No compiled in support for 64 bit object file format"));