diff options
author | Eric Christopher <echristo@gmail.com> | 2001-09-14 20:18:54 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2001-09-14 20:18:54 +0000 |
commit | 920acd6218e5ef0870b884503b44f04c755e67f9 (patch) | |
tree | a4ee9fc68474191286df212f935f19eda1d75794 /gas | |
parent | 775cabad23f71e5edd62343a54c0fc318970916f (diff) | |
download | gdb-920acd6218e5ef0870b884503b44f04c755e67f9.zip gdb-920acd6218e5ef0870b884503b44f04c755e67f9.tar.gz gdb-920acd6218e5ef0870b884503b44f04c755e67f9.tar.bz2 |
2001-09-14 Eric Christopher <echristo@redhat.com>
* config/tc-mips.c (md_parse_option): Remove setting mips_64 via
-mgp32/mgp64.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 5 | ||||
-rw-r--r-- | gas/config/tc-mips.c | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index fb45adb..c40f60e 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2001-09-14 Eric Christopher <echristo@redhat.com> + + * config/tc-mips.c (md_parse_option): Remove setting mips_64 via + -mgp32/mgp64. + 2001-09-14 Kevin Lo <kevlo@openbsd.org> * configure.in: Add arm-openbsd target. diff --git a/gas/config/tc-mips.c b/gas/config/tc-mips.c index d31b4c4..92cac7e 100644 --- a/gas/config/tc-mips.c +++ b/gas/config/tc-mips.c @@ -9251,7 +9251,6 @@ md_parse_option (c, arg) case OPTION_GP32: mips_gp32 = 1; - mips_64 = 0; /* We deliberately don't allow "-gp32" to set the MIPS_32BITMODE flag in object files because to do so would make it @@ -9269,7 +9268,6 @@ md_parse_option (c, arg) case OPTION_GP64: mips_gp32 = 0; - mips_64 = 1; #if 0 mips_32bitmode = 0; #endif |