diff options
author | Christian Groessler <chris@groessler.org> | 2003-05-01 19:59:33 +0000 |
---|---|---|
committer | Christian Groessler <chris@groessler.org> | 2003-05-01 19:59:33 +0000 |
commit | 7f31df7caba8800d6fa5b6cb4b30e5c73f99db21 (patch) | |
tree | a7cbb26de462dab7eb924cef05ffd2cd5518d351 /gas/config/tc-z8k.h | |
parent | 6ae2f58071d7321b4c82d6f3f1da6747f373f462 (diff) | |
download | gdb-7f31df7caba8800d6fa5b6cb4b30e5c73f99db21.zip gdb-7f31df7caba8800d6fa5b6cb4b30e5c73f99db21.tar.gz gdb-7f31df7caba8800d6fa5b6cb4b30e5c73f99db21.tar.bz2 |
* expr.h: Fix comments in operatorT typedef.
* config/tc-z8k.c: Add 2003 to copyright message.
Fold s_segm() and s_unseg() into one function s_segm(parm) which
decides by the parameter.
(md_begin): Don't set linkrelax. Only set Z8002 default if no
command line argument was given to select the intended
architecure.
(get_interrupt_operand): Warn if NOP type code is emitted.
(newfix): New parameter 'size', forward it to 'fix_new_exp'.
(apply_fix): Call newfix with additional 'size' parameter.
(build_bytes): Remove unused variable 'nib'. Detect overflow in
4 bit immediate arguments.
(md_longopts): Add 'linkrelax' option.
(md_parse_option): Adapt to new s_segm function. Set 'linkrelax'
variable when 'linkrelax' command line option is specified.
(md_show_usage): Display 'linkrelax' option.
(md_apply_fix3): Fix cases R_IMM4L, R_JR, and R_IMM8. Add cases
R_CALLR and R_REL16.
* config/tc-z8k.h: Undef WARN_SIGNED_OVERFLOW_WORD.
Diffstat (limited to 'gas/config/tc-z8k.h')
-rw-r--r-- | gas/config/tc-z8k.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gas/config/tc-z8k.h b/gas/config/tc-z8k.h index 7e2cdb2..a85be2e 100644 --- a/gas/config/tc-z8k.h +++ b/gas/config/tc-z8k.h @@ -40,6 +40,7 @@ struct internal_reloc; #define COFF_MAGIC 0x8000 #define TC_COUNT_RELOC(x) (1) #define IGNORE_NONSTANDARD_ESCAPES +#undef WARN_SIGNED_OVERFLOW_WORD #define TC_RELOC_MANGLE(s,a,b,c) tc_reloc_mangle(a,b,c) extern void tc_reloc_mangle |