diff options
author | DJ Delorie <dj@redhat.com> | 2007-02-04 04:45:36 +0000 |
---|---|---|
committer | DJ Delorie <dj@redhat.com> | 2007-02-04 04:45:36 +0000 |
commit | e110eeb74e39496ca32a52d478319f0d840adc2c (patch) | |
tree | 8cdb50e2e0240cfba56bc81a4bb4000674c8879a /gas/config/tc-m32c.h | |
parent | 76d95df787c155078ddc03ca40d70fd5174f18c5 (diff) | |
download | gdb-e110eeb74e39496ca32a52d478319f0d840adc2c.zip gdb-e110eeb74e39496ca32a52d478319f0d840adc2c.tar.gz gdb-e110eeb74e39496ca32a52d478319f0d840adc2c.tar.bz2 |
* config/tc-m32c.c (m32c_cons_fix_new): New. Added to support 3
byte relocs.
* config/tc-m32c.h (TC_CONS_FIX_NEW): Define.
(m32c_cons_fix_new): Prototype.
Diffstat (limited to 'gas/config/tc-m32c.h')
-rw-r--r-- | gas/config/tc-m32c.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gas/config/tc-m32c.h b/gas/config/tc-m32c.h index 3cdd1a14..697e130 100644 --- a/gas/config/tc-m32c.h +++ b/gas/config/tc-m32c.h @@ -57,6 +57,10 @@ extern bfd_boolean m32c_fix_adjustable PARAMS ((struct fix *)); #define TC_FORCE_RELOCATION(fix) m32c_force_relocation (fix) extern int m32c_force_relocation PARAMS ((struct fix *)); +#define TC_CONS_FIX_NEW(FRAG, WHERE, NBYTES, EXP) \ + m32c_cons_fix_new (FRAG, WHERE, NBYTES, EXP) +extern void m32c_cons_fix_new (fragS *, int, int, expressionS *); + extern const struct relax_type md_relax_table[]; #define TC_GENERIC_RELAX_TABLE md_relax_table |