mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-23 19:50:13 +08:00
Fix printf botch.
This commit is contained in:
@ -1,3 +1,7 @@
|
|||||||
|
Mon Apr 10 00:07:09 2000 Andrew Cagney <cagney@b1.cygnus.com>
|
||||||
|
|
||||||
|
* interp.c (decode_coproc): Output long using %lx and not %s.
|
||||||
|
|
||||||
2000-03-21 Frank Ch. Eigler <fche@redhat.com>
|
2000-03-21 Frank Ch. Eigler <fche@redhat.com>
|
||||||
|
|
||||||
* interp.c (sim_open): Sort & extend dummy memory regions for
|
* interp.c (sim_open): Sort & extend dummy memory regions for
|
||||||
|
@ -3231,8 +3231,8 @@ decode_coproc (SIM_DESC sd,
|
|||||||
/* 30 = ErrorEPC R4000 VR4100 VR4300 */
|
/* 30 = ErrorEPC R4000 VR4100 VR4300 */
|
||||||
if (STATE_VERBOSE_P(SD))
|
if (STATE_VERBOSE_P(SD))
|
||||||
sim_io_eprintf (SD,
|
sim_io_eprintf (SD,
|
||||||
"Warning: PC 0x%s:interp.c decode_coproc DEADC0DE\n",
|
"Warning: PC 0x%lx:interp.c decode_coproc DEADC0DE\n",
|
||||||
(unsigned)cia);
|
(unsigned long)cia);
|
||||||
GPR[rt] = 0xDEADC0DE; /* CPR[0,rd] */
|
GPR[rt] = 0xDEADC0DE; /* CPR[0,rd] */
|
||||||
/* CPR[0,rd] = GPR[rt]; */
|
/* CPR[0,rd] = GPR[rt]; */
|
||||||
default:
|
default:
|
||||||
|
Reference in New Issue
Block a user