diff options
author | Alan Modra <amodra@gmail.com> | 2002-12-12 22:21:04 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2002-12-12 22:21:04 +0000 |
commit | 64384dfd069acb9df6a5e6c945b982ca8ac748d7 (patch) | |
tree | 477069f14c0070f02ebfe155545928ff99731d36 /gas | |
parent | 78a0c6fb2d664b42e6373f6a7ba3e63b55f7c938 (diff) | |
download | gdb-64384dfd069acb9df6a5e6c945b982ca8ac748d7.zip gdb-64384dfd069acb9df6a5e6c945b982ca8ac748d7.tar.gz gdb-64384dfd069acb9df6a5e6c945b982ca8ac748d7.tar.bz2 |
* config/tc-ip2k.c (md_assemble): Warning fix.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 1 | ||||
-rw-r--r-- | gas/config/tc-ip2k.c | 13 |
2 files changed, 8 insertions, 6 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index dce8ca7..bce8a43 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,5 +1,6 @@ 2002-12-13 Alan Modra <amodra@bigpond.net.au> + * config/tc-ip2k.c (md_assemble): Warning fix. * config/tc-m32r.c (md_parse_option <arg>): Add ATTRIBUTE_UNUSED. (fill_insn <ignore>): Likewise. (debug_sym <ignore>): Likewise. diff --git a/gas/config/tc-ip2k.c b/gas/config/tc-ip2k.c index 615fce6..973b660 100644 --- a/gas/config/tc-ip2k.c +++ b/gas/config/tc-ip2k.c @@ -180,14 +180,15 @@ md_assemble (str) enum cgen_parse_operand_result result_type; long value; const char *curpc_plus_2 = ".+2"; + const char *err; - errmsg = cgen_parse_address (gas_cgen_cpu_desc, & curpc_plus_2, - IP2K_OPERAND_ADDR16CJP, - BFD_RELOC_IP2K_PC_SKIP, - & result_type, & value); - if (errmsg) + err = cgen_parse_address (gas_cgen_cpu_desc, & curpc_plus_2, + IP2K_OPERAND_ADDR16CJP, + BFD_RELOC_IP2K_PC_SKIP, + & result_type, & value); + if (err) { - as_bad ("%s", errmsg); + as_bad ("%s", err); return; } } |