summaryrefslogtreecommitdiff
path: root/gas/config/tc-m68k.h
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2013-06-13 08:53:35 +0000
committerNick Clifton <nickc@redhat.com>2013-06-13 08:53:35 +0000
commit909c7f9cbf0b6c33f14a68be54723c89cfbadf8c (patch)
treeb1fabf099649cd60c6f0992894c3ec7c7352cf19 /gas/config/tc-m68k.h
parent479a1f0a6f2b84bceb69def3372e3dc7992f0301 (diff)
PR gas/15602
* config/tc-m68k.h (TC_CHECK_ADJUSTED_BROKEN_DOT_WORD): Define. * config/tc-m68k.c (tc_m68k_check_adjusted_broken_word): New function. Generates an error if the adjusted offset is out of a 16-bit range.
Diffstat (limited to 'gas/config/tc-m68k.h')
-rw-r--r--gas/config/tc-m68k.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/gas/config/tc-m68k.h b/gas/config/tc-m68k.h
index bcf4607ebe..bf938f2676 100644
--- a/gas/config/tc-m68k.h
+++ b/gas/config/tc-m68k.h
@@ -188,3 +188,9 @@ extern void tc_m68k_frame_initial_instructions (void);
/* However, follow compiler's guidance when it specifies encoding for LSDA. */
# define CFI_DIFF_LSDA_OK 1
#endif
+
+struct broken_word;
+#define TC_CHECK_ADJUSTED_BROKEN_DOT_WORD(new_offset, brokw) \
+ tc_m68k_check_adjusted_broken_word ((offsetT) (new_offset), (brokw))
+extern void tc_m68k_check_adjusted_broken_word (offsetT,
+ struct broken_word *);