diff options
author | Svein Seldal <svein@dev.seldal.com> | 2002-11-11 14:29:01 +0000 |
---|---|---|
committer | Svein Seldal <svein@dev.seldal.com> | 2002-11-11 14:29:01 +0000 |
commit | 247b1fe61092651808c546345912ad8a36e55b8f (patch) | |
tree | ae20fd33e52b95fe58c01bf575c5f1e61fdfd9bf /gas/config/tc-tic4x.h | |
parent | b7b0b729640771030ea4708abd9f686f820255d8 (diff) | |
download | gdb-247b1fe61092651808c546345912ad8a36e55b8f.zip gdb-247b1fe61092651808c546345912ad8a36e55b8f.tar.gz gdb-247b1fe61092651808c546345912ad8a36e55b8f.tar.bz2 |
gas tic4x target enhancements (long list - see gas/ChangeLog and
include/ChangeLog)
Diffstat (limited to 'gas/config/tc-tic4x.h')
-rw-r--r-- | gas/config/tc-tic4x.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gas/config/tc-tic4x.h b/gas/config/tc-tic4x.h index 185886a..b9dd0e5 100644 --- a/gas/config/tc-tic4x.h +++ b/gas/config/tc-tic4x.h @@ -65,6 +65,8 @@ #define TC_COFF_SIZEMACHDEP(frag) tc_coff_sizemachdep (frag) #define NEED_FX_R_TYPE +#define NOP_OPCODE 0x0c800000 + #define reloc_type int #define NO_RELOC 0 @@ -84,7 +86,7 @@ extern int c4x_unrecognized_line PARAMS ((int)); #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,l) if (c4x_do_align (n,fill,len,max)) goto l +#define md_do_align(n,fill,len,max,label) if( c4x_do_align (n,fill,len,max) ) goto label; /* Start of line hook to remove parallel instruction operator || */ extern void c4x_start_line PARAMS ((void)); |