From: Andrew Cagney Date: Mon, 1 May 2000 07:06:10 +0000 (+0000) Subject: * mips.igen (DMxC1): Fix format arguments for sim_io_eprintf call. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=dd37a34b6fb4b92552fd195ebf1b33c350c675a7;p=binutils-gdb.git * mips.igen (DMxC1): Fix format arguments for sim_io_eprintf call. --- diff --git a/sim/mips/ChangeLog b/sim/mips/ChangeLog index 799159cc3e6..c5236a41d74 100644 --- a/sim/mips/ChangeLog +++ b/sim/mips/ChangeLog @@ -1,3 +1,7 @@ +Fri Apr 28 20:48:36 2000 Andrew Cagney + + * mips.igen (DMxC1): Fix format arguments for sim_io_eprintf call. + Mon Apr 10 00:07:09 2000 Andrew Cagney * interp.c (decode_coproc): Output long using %lx and not %s. diff --git a/sim/mips/mips.igen b/sim/mips/mips.igen index 3589b318f2b..e83f561e277 100644 --- a/sim/mips/mips.igen +++ b/sim/mips/mips.igen @@ -3064,7 +3064,8 @@ { if (STATE_VERBOSE_P(SD)) sim_io_eprintf (SD, - "Warning: PC 0x%x: DMxC1 32-bit use of odd FPR number\n", CIA); + "Warning: PC 0x%lx: DMxC1 32-bit use of odd FPR number\n", + (long) CIA); GPR[RT] = SET64HI (0xDEADC0DE) | 0xBAD0BAD0; } }