diff options
author | Alan Modra <amodra@gmail.com> | 2014-09-22 18:09:49 +0930 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2014-09-22 19:01:25 +0930 |
commit | 28a0da39c6db871d66b945d3025f69d56e487aa9 (patch) | |
tree | c753121ed2616c7940ca37d441c4f1e83a4c0854 /gas/config/tc-pj.h | |
parent | 49727e46175419c638251b39091f24c575568bee (diff) | |
download | gdb-28a0da39c6db871d66b945d3025f69d56e487aa9.zip gdb-28a0da39c6db871d66b945d3025f69d56e487aa9.tar.gz gdb-28a0da39c6db871d66b945d3025f69d56e487aa9.tar.bz2 |
Fix various warnings seen when using gcc-5.0
* config/tc-m68k.c (md_assemble): Add assert to work around
bogus trunk gcc warning.
* config/tc-pj.h (md_convert_frag): Warning fix.
* config/tc-xtensa.c (xg_assemble_vliw_tokens): Warning fix.
Diffstat (limited to 'gas/config/tc-pj.h')
-rw-r--r-- | gas/config/tc-pj.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gas/config/tc-pj.h b/gas/config/tc-pj.h index eda1792..61cd11f 100644 --- a/gas/config/tc-pj.h +++ b/gas/config/tc-pj.h @@ -36,7 +36,7 @@ void pj_cons_fix_new_pj (struct frag *, int, int, expressionS *, arelent *tc_gen_reloc (asection *, struct fix *); #define md_section_align(SEGMENT, SIZE) (SIZE) -#define md_convert_frag(B, S, F) (as_fatal (_("convert_frag\n")), 0) +#define md_convert_frag(B, S, F) as_fatal (_("convert_frag\n")) #define md_estimate_size_before_relax(A, B) (as_fatal (_("estimate size\n")),0) #define md_undefined_symbol(NAME) 0 |