Fix printf arguments.
This commit is contained in:
parent
3e87a7603f
commit
673388c077
|
@ -1,3 +1,7 @@
|
|||
Tue Jun 13 20:52:07 2000 Andrew Cagney <cagney@b1.cygnus.com>
|
||||
|
||||
* mips.igen (MxC1, DMxC1): Fix printf formatting.
|
||||
|
||||
2000-05-24 Michael Hayes <mhayes@cygnus.com>
|
||||
|
||||
* mips.igen (do_dmultx): Fix typo.
|
||||
|
|
|
@ -3034,8 +3034,8 @@
|
|||
{
|
||||
if (STATE_VERBOSE_P(SD))
|
||||
sim_io_eprintf (SD,
|
||||
"Warning: PC 0x%x: semantic_DMxC1_COP1Sa 32-bit use of odd FPR number\n",
|
||||
CIA);
|
||||
"Warning: PC 0x%lx: semantic_DMxC1_COP1Sa 32-bit use of odd FPR number\n",
|
||||
(long) CIA);
|
||||
PENDING_FILL(RT,SET64HI(0xDEADC0DE) | 0xBAD0BAD0);
|
||||
}
|
||||
}
|
||||
|
@ -3209,7 +3209,8 @@
|
|||
{
|
||||
if (STATE_VERBOSE_P(SD))
|
||||
sim_io_eprintf (SD,
|
||||
"Warning: PC 0x%x: MTC1 not DMTC1 with 64 bit regs\n", CIA);
|
||||
"Warning: PC 0x%lx: MTC1 not DMTC1 with 64 bit regs\n",
|
||||
(long) CIA);
|
||||
PENDING_FILL ((FS + FGRIDX), (SET64HI(0xDEADC0DE) | VL4_8(GPR[RT])));
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Reference in New Issue