diff options
author | Ian Lance Taylor <ian@airs.com> | 1996-09-10 01:12:35 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1996-09-10 01:12:35 +0000 |
commit | ca296aab0ea05bd38c724091e13d06126731958f (patch) | |
tree | b276d313e75ec94f4b6ca9d74b82c4c4eee71a10 /gas | |
parent | f0c12b73402e181fed2ac4e3911f8754004d08e6 (diff) | |
download | gdb-ca296aab0ea05bd38c724091e13d06126731958f.zip gdb-ca296aab0ea05bd38c724091e13d06126731958f.tar.gz gdb-ca296aab0ea05bd38c724091e13d06126731958f.tar.bz2 |
Don't set interlocks for r5000. Rely on -mips4 settings.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 3 | ||||
-rw-r--r-- | gas/config/tc-mips.c | 8 |
2 files changed, 3 insertions, 8 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 2084da5..906091b 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -6,8 +6,7 @@ Mon Sep 9 10:57:42 1996 Ian Lance Taylor <ian@cygnus.com> (mips_ip): In cases 'N' and 'M', look for $fccN rather than an immediate value. - * config/tc-mips.c (md_begin): Recognize r5000 for cpu. If - mips_cpu is 5000, set interlocks and cop_interlocks. + * config/tc-mips.c (md_begin): Recognize r5000 for cpu. (mips_ip): Give a better error message if the ISA level is wrong. (md_parse_option): Recognize -mcpu=[v][r]5000. diff --git a/gas/config/tc-mips.c b/gas/config/tc-mips.c index 4185adb..fc691c0 100644 --- a/gas/config/tc-mips.c +++ b/gas/config/tc-mips.c @@ -701,16 +701,12 @@ md_begin () if (mips_4100 < 0) mips_4100 = 0; - if (mips_4650 - || mips_4010 - || mips_4100 - || mips_cpu == 4300 - || mips_cpu == 5000) + if (mips_4650 || mips_4010 || mips_4100 || mips_cpu == 4300) interlocks = 1; else interlocks = 0; - if (mips_cpu == 4300 || mips_cpu == 5000) + if (mips_cpu == 4300) cop_interlocks = 1; else cop_interlocks = 0; |