This is the mail archive of the binutils@sources.redhat.com mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Fix compile time warning in opcodes/iq2000-asm.c


Hi Guys,

  I am applying the patch below to fix a compile time warning when
  building the opcodes/iq2000-asm.c file.

Cheers
  Nick

cpu/ChangeLog:
2005-02-11  Nick Clifton  <nickc@redhat.com>

	* iq2000.opc (parse_jtargq10): Change type of valuep argument to
	'bfd_vma *' in order avoid compile time warning message.

cgen/ChangeLog:
2005-02-11  Nick Clifton  <nickc@redhat.com>

	* cpu/iq2000.opc (parse_jtargq10): Change type of valuep argument
	to 'bfd_vma *' in order avoid compile time warning message.

opcodes/ChangeLog:
2005-02-11  Nick Clifton  <nickc@redhat.com>

	* iq2000-asm.c: Regenerate.

Index: cpu/iq2000.opc
===================================================================
RCS file: /cvs/src/src/cpu/iq2000.opc,v
retrieving revision 1.2
diff -c -3 -p -r1.2 iq2000.opc
*** cpu/iq2000.opc	15 May 2004 13:10:30 -0000	1.2
--- cpu/iq2000.opc	11 Feb 2005 16:04:43 -0000
*************** parse_jtargq10 (cd, strp, opindex, reloc
*** 172,178 ****
       int opindex;
       int reloc;
       enum cgen_parse_operand_result *type_addr;
!      unsigned long *valuep;
  {
    const char *errmsg;
    bfd_vma value;
--- 172,178 ----
       int opindex;
       int reloc;
       enum cgen_parse_operand_result *type_addr;
!      bfd_vma *valuep;
  {
    const char *errmsg;
    bfd_vma value;


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]