From 64384dfd069acb9df6a5e6c945b982ca8ac748d7 Mon Sep 17 00:00:00 2001 From: Alan Modra Date: Thu, 12 Dec 2002 22:21:04 +0000 Subject: [PATCH] * config/tc-ip2k.c (md_assemble): Warning fix. --- gas/ChangeLog | 1 + 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 + * config/tc-ip2k.c (md_assemble): Warning fix. * config/tc-m32r.c (md_parse_option ): Add ATTRIBUTE_UNUSED. (fill_insn ): Likewise. (debug_sym ): 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; } } -- 2.7.4