* config/tc-mips.c (md_parse_option): Complain about invalid -mabi

option input.
This commit is contained in:
Thiemo Seufer 2002-02-19 22:59:30 +00:00
parent 59ea9fe7b6
commit da0e507f3d
2 changed files with 9 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2002-02-19 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
* config/tc-mips.c (md_parse_option): Complain about invalid -mabi
option input.
2002-02-19 Martin Schwidefsky <schwidefsky@de.ibm.com>
* config/tc-s390.c (md_parse_option): Add switches -m31 and -m64.

View file

@ -10080,7 +10080,10 @@ md_parse_option (c, arg)
else if (strcmp (arg, "eabi") == 0)
mips_opts.abi = EABI_ABI;
else
mips_opts.abi = NO_ABI;
{
as_fatal (_("invalid abi -mabi=%s"), arg);
return 0;
}
break;
#endif /* OBJ_ELF */