diff options
author | Timothy Wall <twall@alum.mit.edu> | 2001-11-13 14:22:53 +0000 |
---|---|---|
committer | Timothy Wall <twall@alum.mit.edu> | 2001-11-13 14:22:53 +0000 |
commit | 6e9179034707f18294ae1cbebcc7e9714a46951d (patch) | |
tree | 85f85a20b4ea7e4ff949b0703aae7c42bc8ed6b7 /gas/config/tc-tic54x.h | |
parent | 1a78a35acfb696d2262b7c2d707b9e6421c99aaa (diff) | |
download | gdb-6e9179034707f18294ae1cbebcc7e9714a46951d.zip gdb-6e9179034707f18294ae1cbebcc7e9714a46951d.tar.gz gdb-6e9179034707f18294ae1cbebcc7e9714a46951d.tar.bz2 |
Fix tic54x testsuite failures and Lmem disassembly bugs.
Diffstat (limited to 'gas/config/tc-tic54x.h')
-rw-r--r-- | gas/config/tc-tic54x.h | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/gas/config/tc-tic54x.h b/gas/config/tc-tic54x.h index f239fc9..07b1f67 100644 --- a/gas/config/tc-tic54x.h +++ b/gas/config/tc-tic54x.h @@ -83,26 +83,26 @@ extern void tic54x_cons_fix_new PARAMS((fragS *,int,int,expressionS *)); */ #define md_number_to_chars tic54x_number_to_chars -extern void tic54x_number_to_chars PARAMS((char *, valueT, int)); +extern void tic54x_number_to_chars (char *, valueT, int); #define tc_adjust_symtab() tic54x_adjust_symtab() -extern void tic54x_adjust_symtab PARAMS(()); +extern void tic54x_adjust_symtab (void); #define tc_unrecognized_line(ch) tic54x_unrecognized_line(ch) -extern int tic54x_unrecognized_line PARAMS((int ch)); +extern int tic54x_unrecognized_line (int ch); #define md_parse_name(s,e,c) tic54x_parse_name(s,e) -extern int tic54x_parse_name PARAMS((char *name, expressionS *e)); +extern int tic54x_parse_name (char *name, expressionS *e); #define md_undefined_symbol(s) tic54x_undefined_symbol(s) -extern symbolS *tic54x_undefined_symbol PARAMS((char *name)); +extern symbolS *tic54x_undefined_symbol (char *name); #define md_macro_start() tic54x_macro_start() -extern void tic54x_macro_start (); +extern void tic54x_macro_start (void); #define md_macro_end() tic54x_macro_end() -extern void tic54x_macro_end (); +extern void tic54x_macro_end (void); #define md_macro_info(args) tic54x_macro_info(args) extern void tic54x_macro_info PARAMS((void *macro)); #define tc_frob_label(sym) tic54x_define_label (sym) extern void tic54x_define_label PARAMS((symbolS *)); #define md_start_line_hook() tic54x_start_line_hook() -extern void tic54x_start_line_hook (); +extern void tic54x_start_line_hook (void); #define md_estimate_size_before_relax(f,s) \ tic54x_estimate_size_before_relax(f,s) @@ -125,4 +125,6 @@ extern void tic54x_convert_frag(bfd *, segT, fragS *); /* spruce up the listing output */ #define LISTING_WORD_SIZE 2 +extern void tic54x_global (int); + #endif |