diff options
author | Andrew Cagney <cagney@redhat.com> | 2000-04-29 08:55:45 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2000-04-29 08:55:45 +0000 |
commit | dad41f9aa4ce3170d5860ae9c422c41c37500cdd (patch) | |
tree | 6d5720429465b1b54cd5719ece437129ae577a71 /gdb/gdbarch.h | |
parent | 0ca652e9ecbfd5acc32611a2f6169dd6cfdcbc28 (diff) | |
download | binutils-gdb-dad41f9aa4ce3170d5860ae9c422c41c37500cdd.tar.gz |
Convert SKIP_PROLOGUE_FRAMELESS_P into PROLOGUE_FRAMELESS_P.
Diffstat (limited to 'gdb/gdbarch.h')
-rw-r--r-- | gdb/gdbarch.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gdb/gdbarch.h b/gdb/gdbarch.h index f7f88d264a2..fb2ca99ab2a 100644 --- a/gdb/gdbarch.h +++ b/gdb/gdbarch.h @@ -659,6 +659,13 @@ extern void set_gdbarch_skip_prologue (struct gdbarch *gdbarch, gdbarch_skip_pro #endif #endif +typedef int (gdbarch_prologue_frameless_p_ftype) (CORE_ADDR ip); +extern int gdbarch_prologue_frameless_p (struct gdbarch *gdbarch, CORE_ADDR ip); +extern void set_gdbarch_prologue_frameless_p (struct gdbarch *gdbarch, gdbarch_prologue_frameless_p_ftype *prologue_frameless_p); +#if (GDB_MULTI_ARCH > 1) || !defined (PROLOGUE_FRAMELESS_P) +#define PROLOGUE_FRAMELESS_P(ip) (gdbarch_prologue_frameless_p (current_gdbarch, ip)) +#endif + typedef int (gdbarch_inner_than_ftype) (CORE_ADDR lhs, CORE_ADDR rhs); extern int gdbarch_inner_than (struct gdbarch *gdbarch, CORE_ADDR lhs, CORE_ADDR rhs); extern void set_gdbarch_inner_than (struct gdbarch *gdbarch, gdbarch_inner_than_ftype *inner_than); |