diff options
author | Svein Seldal <svein@dev.seldal.com> | 2003-04-04 08:15:15 +0000 |
---|---|---|
committer | Svein Seldal <svein@dev.seldal.com> | 2003-04-04 08:15:15 +0000 |
commit | be33c5dd4d463877c8412bfc0416a75d27008598 (patch) | |
tree | 405ef40be6cbbe36c27871d4b8282dc174bb22a3 /gas/config/tc-tic4x.h | |
parent | 36018d2e5a9890d2a2564a74c319b76c1bde0ed1 (diff) | |
download | gdb-be33c5dd4d463877c8412bfc0416a75d27008598.zip gdb-be33c5dd4d463877c8412bfc0416a75d27008598.tar.gz gdb-be33c5dd4d463877c8412bfc0416a75d27008598.tar.bz2 |
Namespace cleanup for the tic4x target. Replace s/c4x/tic4x/ and s/c3x/tic3x/. 2003 copyright update
Diffstat (limited to 'gas/config/tc-tic4x.h')
-rw-r--r-- | gas/config/tc-tic4x.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/gas/config/tc-tic4x.h b/gas/config/tc-tic4x.h index b9dd0e5..14b0683 100644 --- a/gas/config/tc-tic4x.h +++ b/gas/config/tc-tic4x.h @@ -1,5 +1,5 @@ /* tc-tic4x.h -- Assemble for the Texas TMS320C[34]X. - Copyright (C) 1997, 2002 Free Software Foundation. + Copyright (C) 1997, 2002, 2003 Free Software Foundation. Contributed by Michael P. Hayes (m.hayes@elec.canterbury.ac.nz) @@ -20,7 +20,7 @@ the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #define TC_TIC4X -#define C4X +#define TIC4X #ifndef BFD_ASSEMBLER #error TMS320C4x requires BFD_ASSEMBLER @@ -80,21 +80,21 @@ /* Accept numbers with a suffix, e.g. 0ffffh, 1010b. */ #define NUMBERS_WITH_SUFFIX 1 -extern int c4x_unrecognized_line PARAMS ((int)); -#define tc_unrecognized_line(c) c4x_unrecognized_line (c) +extern int tic4x_unrecognized_line PARAMS ((int)); +#define tc_unrecognized_line(c) tic4x_unrecognized_line (c) #define md_number_to_chars number_to_chars_littleendian -extern int c4x_do_align PARAMS ((int, const char *, int, int)); -#define md_do_align(n,fill,len,max,label) if( c4x_do_align (n,fill,len,max) ) goto label; +extern int tic4x_do_align PARAMS ((int, const char *, int, int)); +#define md_do_align(n,fill,len,max,label) if( tic4x_do_align (n,fill,len,max) ) goto label; /* Start of line hook to remove parallel instruction operator || */ -extern void c4x_start_line PARAMS ((void)); -#define md_start_line_hook() c4x_start_line() +extern void tic4x_start_line PARAMS ((void)); +#define md_start_line_hook() tic4x_start_line() -extern void c4x_cleanup PARAMS ((void)); -#define md_cleanup() c4x_cleanup() +extern void tic4x_cleanup PARAMS ((void)); +#define md_cleanup() tic4x_cleanup() -extern void c4x_end PARAMS ((void)); -#define md_end() c4x_end() +extern void tic4x_end PARAMS ((void)); +#define md_end() tic4x_end() |