mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-28 15:18:37 +08:00
Fix references to file_mips_isa missed in previous patch.
gas/ * config/tc-mips.c (md_parse_option): Update missed file_mips_isa references.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2014-05-08 Matthew Fortune <matthew.fortune@imgtec.com>
|
||||||
|
|
||||||
|
* config/tc-mips.c (md_parse_option): Update missed file_mips_isa
|
||||||
|
references.
|
||||||
|
|
||||||
2014-05-08 Matthew Fortune <matthew.fortune@imgtec.com>
|
2014-05-08 Matthew Fortune <matthew.fortune@imgtec.com>
|
||||||
|
|
||||||
* config/tc-mips.c (mips_set_options): Rename fp32 field to fp.
|
* config/tc-mips.c (mips_set_options): Rename fp32 field to fp.
|
||||||
|
@ -13573,11 +13573,11 @@ md_parse_option (int c, char *arg)
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case OPTION_MIPS32R3:
|
case OPTION_MIPS32R3:
|
||||||
file_mips_isa = ISA_MIPS32R3;
|
file_mips_opts.isa = ISA_MIPS32R3;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case OPTION_MIPS32R5:
|
case OPTION_MIPS32R5:
|
||||||
file_mips_isa = ISA_MIPS32R5;
|
file_mips_opts.isa = ISA_MIPS32R5;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case OPTION_MIPS64R2:
|
case OPTION_MIPS64R2:
|
||||||
@ -13585,11 +13585,11 @@ md_parse_option (int c, char *arg)
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case OPTION_MIPS64R3:
|
case OPTION_MIPS64R3:
|
||||||
file_mips_isa = ISA_MIPS64R3;
|
file_mips_opts.isa = ISA_MIPS64R3;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case OPTION_MIPS64R5:
|
case OPTION_MIPS64R5:
|
||||||
file_mips_isa = ISA_MIPS64R5;
|
file_mips_opts.isa = ISA_MIPS64R5;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case OPTION_MIPS64:
|
case OPTION_MIPS64:
|
||||||
|
Reference in New Issue
Block a user