summaryrefslogtreecommitdiff
path: root/cpu/iq2000.opc
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2005-02-11 16:09:30 +0000
committerNick Clifton <nickc@redhat.com>2005-02-11 16:09:30 +0000
commit12e66f53956847c780567b236e7ca7ad28bd240e (patch)
treecbfacfd0a11f26865a855f72568e520424b5f2e2 /cpu/iq2000.opc
parent181da388b0b61b32aebdbfa3d04b994197155be9 (diff)
downloadbinutils-redhat-12e66f53956847c780567b236e7ca7ad28bd240e.tar.gz
Fix compile time warning building iq2000-asm.c
Diffstat (limited to 'cpu/iq2000.opc')
-rw-r--r--cpu/iq2000.opc4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpu/iq2000.opc b/cpu/iq2000.opc
index 3b7620f328..a6f8bbef81 100644
--- a/cpu/iq2000.opc
+++ b/cpu/iq2000.opc
@@ -172,7 +172,7 @@ parse_jtargq10 (cd, strp, opindex, reloc, type_addr, valuep)
int opindex;
int reloc;
enum cgen_parse_operand_result *type_addr;
- unsigned long *valuep;
+ bfd_vma *valuep;
{
const char *errmsg;
bfd_vma value;
@@ -182,7 +182,7 @@ parse_jtargq10 (cd, strp, opindex, reloc, type_addr, valuep)
&result_type, &value);
if (errmsg == NULL && result_type == CGEN_PARSE_OPERAND_RESULT_NUMBER)
{
- /* check value is within 23-bits (remembering that 2-bit shift right will occur) */
+ /* Check value is within 23-bits (remembering that 2-bit shift right will occur). */
if (value > 0x7fffff)
return _("21-bit offset out of range");
}