diff options
Diffstat (limited to 'gas/config/tc-ppc.h')
-rw-r--r-- | gas/config/tc-ppc.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/gas/config/tc-ppc.h b/gas/config/tc-ppc.h index a11d396..eb19017 100644 --- a/gas/config/tc-ppc.h +++ b/gas/config/tc-ppc.h @@ -84,14 +84,11 @@ extern char *ppc_target_format (void); ppc_handle_align (FRAGP); extern void ppc_handle_align (struct frag *); +extern void ppc_frag_check (struct frag *); #define SUB_SEGMENT_ALIGN(SEG, FRCHAIN) 0 -#define md_frag_check(FRAGP) \ - if ((FRAGP)->has_code \ - && (((FRAGP)->fr_address + (FRAGP)->insn_addr) & 3) != 0) \ - as_bad_where ((FRAGP)->fr_file, (FRAGP)->fr_line, \ - _("instruction address is not a multiple of 4")); +#define md_frag_check(FRAGP) ppc_frag_check (FRAGP) /* Arrange to store the value of ppc_cpu at the site of a fixup for later use in md_apply_fix. */ |