This is the mail archive of the gdb-patches@sourceware.cygnus.com mailing list for the GDB project.


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

[patch/sim] Fix format args


FYI,

I've checked in the attached.

	Andrew
Fri Apr 28 20:48:36 2000  Andrew Cagney  <cagney@b1.cygnus.com>

	* mips.igen (DMxC1): Fix format arguments for sim_io_eprintf call.

Index: mips.igen
===================================================================
RCS file: /cvs/cvsfiles/devo/sim/mips/mips.igen,v
retrieving revision 1.80
diff -p -r1.80 mips.igen
*** mips.igen	2000/03/02 09:19:25	1.80
--- mips.igen	2000/05/01 07:01:38
***************
*** 6417,6423 ****
  	{
  	  if (STATE_VERBOSE_P(SD))
  	    sim_io_eprintf (SD, 
! 	      "Warning: PC 0x%x: DMxC1 32-bit use of odd FPR number\n", CIA);
  	  GPR[RT] = SET64HI (0xDEADC0DE) | 0xBAD0BAD0;
  	}
      }
--- 6417,6424 ----
  	{
  	  if (STATE_VERBOSE_P(SD))
  	    sim_io_eprintf (SD, 
! 	      "Warning: PC 0x%lx: DMxC1 32-bit use of odd FPR number\n",
! 			    (long) CIA);
  	  GPR[RT] = SET64HI (0xDEADC0DE) | 0xBAD0BAD0;
  	}
      }

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