aboutsummaryrefslogtreecommitdiff
path: root/gas/read.c
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2005-02-19 08:56:08 +0000
committerAlan Modra <amodra@gmail.com>2005-02-19 08:56:08 +0000
commitb5682e5666232dbae25d81089f71a68ed4146ffc (patch)
treeb75fd98017b9f80de60ae34d0806314d2106ba64 /gas/read.c
parentc187109005662c6b91a6ae5ed3b9ecacd798d61f (diff)
downloadfsf-binutils-gdb-b5682e5666232dbae25d81089f71a68ed4146ffc.zip
fsf-binutils-gdb-b5682e5666232dbae25d81089f71a68ed4146ffc.tar.gz
fsf-binutils-gdb-b5682e5666232dbae25d81089f71a68ed4146ffc.tar.bz2
* config/tc-hppa.h (TC_EQUAL_IN_INSN): Delete.
* read.c (read_a_source_file): Remove TC_EQUAL_IN_INSN test. * doc/internals.texi (TC_EQUAL_IN_INSN): Delete.
Diffstat (limited to 'gas/read.c')
-rw-r--r--gas/read.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/gas/read.c b/gas/read.c
index 3365c82..807f410 100644
--- a/gas/read.c
+++ b/gas/read.c
@@ -710,11 +710,7 @@ read_a_source_file (char *name)
}
else if (c == '='
|| ((c == ' ' || c == '\t')
- && input_line_pointer[1] == '='
-#ifdef TC_EQUAL_IN_INSN
- && !TC_EQUAL_IN_INSN (c, input_line_pointer)
-#endif
- ))
+ && input_line_pointer[1] == '='))
{
equals (s, 1);
demand_empty_rest_of_line ();