2004-03-31 Ralf Corsepius <ralf_corsepius@rtems.org>

* m68k-stub.c: Convert to using c99 fixed size types.
This commit is contained in:
Ralf Corsepius
2004-03-31 04:56:43 +00:00
parent 162ffb4885
commit ed9122e930
2 changed files with 8 additions and 4 deletions

View File

@@ -1,3 +1,7 @@
2004-03-31 Ralf Corsepius <ralf_corsepius@rtems.org>
* m68k-stub.c: Convert to using c99 fixed size types.
2003-08-16 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* Makefile.am: Reflect having moved automake/.

View File

@@ -1072,9 +1072,9 @@ void handle_exception(int exceptionVector)
{
if (remote_debug)
printf("frame at 0x%x has pc=0x%x, except#=%d\n",
(unsigned32) frame,
(unsigned32) frame->exceptionPC,
(unsigned32) frame->exceptionVector);
(uint32_t) frame,
(uint32_t) frame->exceptionPC,
(uint32_t) frame->exceptionVector);
if (frame->exceptionPC == newPC) break; /* bingo! a match */
/*
* for a breakpoint instruction, the saved pc may
@@ -1113,7 +1113,7 @@ void handle_exception(int exceptionVector)
{
if (remote_debug)
printf("frame at 0x%x has pc=0x%x, except#=%d\n",
(unsigned32) frame,
(uint32_t) frame,
frame->exceptionPC,
frame->exceptionVector);
/* re-use the last frame, we're skipping it (longjump?)*/