Fix definition of SKIP_PROLOGUE macro.

This commit is contained in:
Nick Clifton 2000-07-14 20:55:41 +00:00
parent 64a1067567
commit 585230bdeb
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2000-07-14 Nick Clifton <nickc@cygnus.com>
* config/mcore/tm-mcore.h (SKIP_PROLOGUE): Fix defintion to avoid
assignment.
2000-07-13 Michael Snyder <msnyder@cleaver.cygnus.com>
* parse.c: Include inferior.h.

View File

@ -101,7 +101,7 @@ extern CORE_ADDR mcore_extract_struct_value_address (char *regbuf);
mcore_extract_struct_value_address (REGBUF)
extern CORE_ADDR mcore_skip_prologue (CORE_ADDR pc);
#define SKIP_PROLOGUE(PC) (PC) = mcore_skip_prologue ((PC))
#define SKIP_PROLOGUE(PC) mcore_skip_prologue (PC)
#define FRAME_ARGS_SKIP 0
extern CORE_ADDR mcore_frame_args_address (struct frame_info *fi);