diff options
author | Ian Lance Taylor <ian@airs.com> | 1995-12-11 19:23:10 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1995-12-11 19:23:10 +0000 |
commit | 1b10f50d907cd4018cbbfecb752022896abdb85a (patch) | |
tree | 5d496872719947d7f7a114eba63513b486513eb0 /gas/config/tc-a29k.h | |
parent | 32d067978fad2d73fb7e0010f5108b5262831bb4 (diff) | |
download | gdb-1b10f50d907cd4018cbbfecb752022896abdb85a.zip gdb-1b10f50d907cd4018cbbfecb752022896abdb85a.tar.gz gdb-1b10f50d907cd4018cbbfecb752022896abdb85a.tar.bz2 |
* read.c (read_a_source_file): If tc_unrecognized_line is defined,
call it.
* config/tc-a29k.h (tc_unrecognized_line): Define.
* config/tc-a29k.c (a29k_unrecognized_line): New function.
(md_operand): Handle a29k style local dollar labels.
Diffstat (limited to 'gas/config/tc-a29k.h')
-rw-r--r-- | gas/config/tc-a29k.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gas/config/tc-a29k.h b/gas/config/tc-a29k.h index 1c36f07..a63864f 100644 --- a/gas/config/tc-a29k.h +++ b/gas/config/tc-a29k.h @@ -23,6 +23,9 @@ the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307 #define LEX_DOLLAR 1 +#define tc_unrecognized_line(c) a29k_unrecognized_line (c) +extern int a29k_unrecognized_line PARAMS ((int)); + #define tc_headers_hook(a) ; /* not used */ #define tc_headers_hook(a) ; /* not used */ #define tc_crawl_symbol_chain(a) ; /* not used */ |