Fix references to file_mips_isa missed in previous patch.
authormfortune <matthew.fortune@imgtec.com>
Thu, 8 May 2014 21:07:49 +0000 (22:07 +0100)
committermfortune <matthew.fortune@imgtec.com>
Thu, 8 May 2014 21:07:49 +0000 (22:07 +0100)
gas/
* config/tc-mips.c (md_parse_option): Update missed file_mips_isa
references.

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

index 85f90a5649440d757ba92e0f91b94d6ae013149d..737f047cc7b02d66d1ed766e482f5cfbdb0271fd 100644 (file)
@@ -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>
 
        * config/tc-mips.c (mips_set_options): Rename fp32 field to fp.
index 6e7727361141bef3d9813d51d0db051bd980192e..12e9792950d5f45c16250148bba60b9aef86ec7e 100644 (file)
@@ -13573,11 +13573,11 @@ md_parse_option (int c, char *arg)
       break;
 
     case OPTION_MIPS32R3:
-      file_mips_isa = ISA_MIPS32R3;
+      file_mips_opts.isa = ISA_MIPS32R3;
       break;
 
     case OPTION_MIPS32R5:
-      file_mips_isa = ISA_MIPS32R5;
+      file_mips_opts.isa = ISA_MIPS32R5;
       break;
 
     case OPTION_MIPS64R2:
@@ -13585,11 +13585,11 @@ md_parse_option (int c, char *arg)
       break;
 
     case OPTION_MIPS64R3:
-      file_mips_isa = ISA_MIPS64R3;
+      file_mips_opts.isa = ISA_MIPS64R3;
       break;
 
     case OPTION_MIPS64R5:
-      file_mips_isa = ISA_MIPS64R5;
+      file_mips_opts.isa = ISA_MIPS64R5;
       break;
 
     case OPTION_MIPS64: