aboutsummaryrefslogtreecommitdiff
path: root/gas/config
diff options
context:
space:
mode:
authorH.J. Lu <hjl.tools@gmail.com>2001-04-29 17:58:39 +0000
committerH.J. Lu <hjl.tools@gmail.com>2001-04-29 17:58:39 +0000
commitf4ddc5e6337d1936951b8b4e19841642c25af557 (patch)
treeee6e243060bcbdd94e705930b97da5fe7020179f /gas/config
parent053579d75409784648605b6d5876860598909fab (diff)
downloadgdb-f4ddc5e6337d1936951b8b4e19841642c25af557.zip
gdb-f4ddc5e6337d1936951b8b4e19841642c25af557.tar.gz
gdb-f4ddc5e6337d1936951b8b4e19841642c25af557.tar.bz2
2001-04-29 Keith M Wesolowski <wesolows@foobazco.org>
* config/tc-mips.c (md_parse_option): Also accept elf64-tradbigmips and elf64-tradlittlemips for OPTION_64.
Diffstat (limited to 'gas/config')
-rw-r--r--gas/config/tc-mips.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/gas/config/tc-mips.c b/gas/config/tc-mips.c
index 6c2f317..907dda4 100644
--- a/gas/config/tc-mips.c
+++ b/gas/config/tc-mips.c
@@ -9140,7 +9140,9 @@ 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-littlemips") == 0
+ || strcmp (*l, "elf64-tradbigmips") == 0
+ || strcmp (*l, "elf64-tradlittlemips") == 0)
break;
if (*l == NULL)
as_fatal (_("No compiled in support for 64 bit object file format"));