diff options
author | Catherine Moore <clm@redhat.com> | 1998-04-15 14:11:33 +0000 |
---|---|---|
committer | Catherine Moore <clm@redhat.com> | 1998-04-15 14:11:33 +0000 |
commit | 2cf51495fa74d735f11ac41a268d42741f8cc3b5 (patch) | |
tree | bfd98bd5aafc340a435d16c85b45d873d3779c46 /gas | |
parent | 74025eeea7d79d807ac403e680876a32b6ea87e3 (diff) | |
download | gdb-2cf51495fa74d735f11ac41a268d42741f8cc3b5.zip gdb-2cf51495fa74d735f11ac41a268d42741f8cc3b5.tar.gz gdb-2cf51495fa74d735f11ac41a268d42741f8cc3b5.tar.bz2 |
Remove 4300 and 5400 from hilo_interlocks definition.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 11 | ||||
-rw-r--r-- | gas/config/tc-mips.c | 5 |
2 files changed, 12 insertions, 4 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index e024839..4a9ebfb 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,14 @@ +start-sanitize-vr5400 +Wed Apr 15 07:06:04 1998 Catherine Moore <clm@cygnus.com> + + * config/tc-mips.c (hilo_interlocks): Remove VR5400. + +end-sanitize-vr5400 + +Wed Apr 15 07:06:04 1998 Catherine Moore <clm@cygnus.com> + + * config/tc-mips.c (hilo_interlocks): Remove 4300. + Mon Apr 13 16:51:04 1998 Nick Clifton <nickc@cygnus.com> * config/tc-arm.c (do_msr): Support undocumented 'msr cpsr_flg, diff --git a/gas/config/tc-mips.c b/gas/config/tc-mips.c index 40bc195..3476db9 100644 --- a/gas/config/tc-mips.c +++ b/gas/config/tc-mips.c @@ -235,16 +235,13 @@ static int mips_4900 = -1; /* Whether the processor uses hardware interlocks to protect reads from the HI and LO registers, and thus does not require nops to be inserted. */ -#define hilo_interlocks (mips_4010 || mips_cpu == 4300 || mips_3900 \ +#define hilo_interlocks (mips_4010 || mips_3900 \ /* start-sanitize-tx49 */ \ || mips_cpu == 4900 || mips_4900 \ /* end-sanitize-tx49 */ \ /* start-sanitize-vr4320 */ \ || mips_cpu == 4320 \ /* end-sanitize-vr4320 */ \ - /* start-sanitize-vr5400 */ \ - || mips_cpu == 5400 \ - /* end-sanitize-vr5400 */ \ ) /* Whether the processor uses hardware interlocks to protect reads |