diff options
author | Alan Modra <amodra@gmail.com> | 2005-02-19 08:56:08 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2005-02-19 08:56:08 +0000 |
commit | b5682e5666232dbae25d81089f71a68ed4146ffc (patch) | |
tree | b75fd98017b9f80de60ae34d0806314d2106ba64 /gas/read.c | |
parent | c187109005662c6b91a6ae5ed3b9ecacd798d61f (diff) | |
download | gdb-b5682e5666232dbae25d81089f71a68ed4146ffc.zip gdb-b5682e5666232dbae25d81089f71a68ed4146ffc.tar.gz 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.c | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -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 (); |