1998-12-29 Gavin Romig-Koch <gavin@cygnus.com>

* config/tc-mips.c (md_begin): Another correction to the setting of
	mips_eabi64.
This commit is contained in:
Gavin Romig-Koch
1998-12-29 14:09:36 +00:00
parent 4ef1f46773
commit ffa3e1860a
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,8 @@
1998-12-29 Gavin Romig-Koch <gavin@cygnus.com>
* config/tc-mips.c (md_begin): Another correction to the setting of
mips_eabi64.
1998-12-23 Gavin Romig-Koch <gavin@cygnus.com>
* config/tc-mips.c (md_begin): Correct type-o in setting of mips_eabi64.

View File

@ -1110,7 +1110,9 @@ md_begin ()
/* Set the EABI kind based on the ISA before the user gets
to change the ISA with directives. This isn't really
the best, but then neither is basing the abi on the isa. */
if (mips_opts.isa > 2 && 0 == strcmp (mips_abi_string,"eabi"))
if (mips_opts.isa > 2
&& mips_abi_string
&& 0 == strcmp (mips_abi_string,"eabi"))
mips_eabi64 = 1;
if (mips_cpu != 0 && mips_cpu != -1)