This commit is contained in:
K. Richard Pixley 1993-09-08 21:45:17 +00:00
parent fee933f19c
commit c323585b89
3 changed files with 12 additions and 1 deletions

View File

@ -1,6 +1,7 @@
Wed Sep 8 13:01:10 1993 K. Richard Pixley (rich@cygnus.com)
Gcc lint.
* config/tm-h8300.h (NUM_REGS): rewrite to avoid nested comment.
* blockframe.c (get_prev_frame_info): initialize address.
* breakpoint.c (bpstat_copy): initialize retval.
(bpstat_stop_status): initialize value_is_zero.

View File

@ -94,8 +94,12 @@ extern CORE_ADDR h8300_skip_prologue ();
#define REGISTER_TYPE unsigned short
/*# define NUM_REGS 20 /* 20 for fake HW support */
#if 0
# define NUM_REGS 20 /* 20 for fake HW support */
#else
#define NUM_REGS 13
#endif
#define REGISTER_BYTES (NUM_REGS * 4)
/* Index within `registers' of the first byte of the space for

View File

@ -384,6 +384,12 @@ extern CORE_ADDR frame_locals_address ();
previous frames.
*/
struct frame_saved_regs;
struct frame_info;
void frame_find_saved_regs PARAMS((struct frame_info *fi,
struct frame_saved_regs *fsr));
#define FRAME_FIND_SAVED_REGS(frame_info, frame_saved_regs) \
frame_find_saved_regs (frame_info, &frame_saved_regs)