diff options
author | mfortune <matthew.fortune@imgtec.com> | 2014-05-08 22:07:49 +0100 |
---|---|---|
committer | mfortune <matthew.fortune@imgtec.com> | 2014-05-08 22:07:49 +0100 |
commit | 0ae19f059afedc024e707a99d767257574758046 (patch) | |
tree | 2f7b84a5990708e1e27fb4c161270fe9b6351adf /gas | |
parent | 0b35dfeec64597fe12495295f6d5e9b12131a390 (diff) | |
download | gdb-0ae19f059afedc024e707a99d767257574758046.zip gdb-0ae19f059afedc024e707a99d767257574758046.tar.gz gdb-0ae19f059afedc024e707a99d767257574758046.tar.bz2 |
Fix references to file_mips_isa missed in previous patch.
gas/
* config/tc-mips.c (md_parse_option): Update missed file_mips_isa
references.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 5 | ||||
-rw-r--r-- | gas/config/tc-mips.c | 8 |
2 files changed, 9 insertions, 4 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 85f90a5..737f047 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,5 +1,10 @@ 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. Update fp32 == 0 to fp == 64 and fp32 == 1 to fp != 64 throughout. (file_mips_gp32, file_mips_fp32, file_mips_soft_float, diff --git a/gas/config/tc-mips.c b/gas/config/tc-mips.c index 6e77273..12e9792 100644 --- a/gas/config/tc-mips.c +++ b/gas/config/tc-mips.c @@ -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: |