diff options
author | Andrew Cagney <cagney@redhat.com> | 2002-04-14 13:38:07 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2002-04-14 13:38:07 +0000 |
commit | f208ba17b9e2ab2f57d5505c237492f4dcc9e0c7 (patch) | |
tree | 15b612f842d3503acb11250d7ec863c241114450 /gdb/blockframe.c | |
parent | a29216ec3c70e815fbc288abb68246720434f45d (diff) | |
download | gdb-f208ba17b9e2ab2f57d5505c237492f4dcc9e0c7.zip gdb-f208ba17b9e2ab2f57d5505c237492f4dcc9e0c7.tar.gz gdb-f208ba17b9e2ab2f57d5505c237492f4dcc9e0c7.tar.bz2 |
* config/pa/tm-hppa.h (FRAME_CHAIN_COMBINE): Delete macro.
* blockframe.c (FRAME_CHAIN_COMBINE): Delete macro.
(get_prev_frame): Do not call FRAME_CHAIN_COMBINE.
* gdbint.texinfo (Target Architecture Definition): Remove
FRAME_CHAIN_COMBINE.
Diffstat (limited to 'gdb/blockframe.c')
-rw-r--r-- | gdb/blockframe.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/gdb/blockframe.c b/gdb/blockframe.c index 49bda4a..8f43ea7 100644 --- a/gdb/blockframe.c +++ b/gdb/blockframe.c @@ -303,12 +303,6 @@ frameless_look_for_prologue (struct frame_info *frame) return 0; } -/* Default a few macros that people seldom redefine. */ - -#ifndef FRAME_CHAIN_COMBINE -#define FRAME_CHAIN_COMBINE(chain, thisframe) (chain) -#endif - /* Return a structure containing various interesting information about the frame that called NEXT_FRAME. Returns NULL if there is no such frame. */ @@ -379,7 +373,6 @@ get_prev_frame (struct frame_info *next_frame) address = FRAME_CHAIN (next_frame); if (!FRAME_CHAIN_VALID (address, next_frame)) return 0; - address = FRAME_CHAIN_COMBINE (address, next_frame); } if (address == 0) return 0; |