diff options
author | Andrew Cagney <cagney@redhat.com> | 2002-11-27 01:08:50 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2002-11-27 01:08:50 +0000 |
commit | e92b0cc9b14f693df6d7e34882d76f62f5c467c8 (patch) | |
tree | 8a486bf732925fb14d4b291960585b3a41d402d6 /gdb/config/z8k/tm-z8k.h | |
parent | d80d5cb9b1e0622d6bb510cd2a9af659eade2d95 (diff) | |
download | gdb-e92b0cc9b14f693df6d7e34882d76f62f5c467c8.zip gdb-e92b0cc9b14f693df6d7e34882d76f62f5c467c8.tar.gz gdb-e92b0cc9b14f693df6d7e34882d76f62f5c467c8.tar.bz2 |
2002-11-26 Andrew Cagney <ac131313@redhat.com>
* config/h8500/tm-h8500.h (CALL_DUMMY_LOCATION): Define as ON_STACK.
(USE_GENERIC_DUMMY_FRAMES): Define as zero.
(PC_IN_CALL_DUMMY): Define as pc_in_call_dummy_on_stack.
* config/mn10200/tm-mn10200.h (PC_IN_CALL_DUMMY): Define as
pc_in_call_dummy_at_entry_point.
* config/pa/tm-hppa.h (CALL_DUMMY_LOCATION): Define as ON_STACK.
(USE_GENERIC_DUMMY_FRAMES): Define as zero.
(PC_IN_CALL_DUMMY): Define as pc_in_call_dummy_on_stack.
* config/pa/tm-hppa64.h (CALL_DUMMY_LOCATION): Delete undefine.
* config/sparc/tm-sparc.h (PC_IN_CALL_DUMMY): Define as
pc_in_call_dummy_on_stack.
* config/sparc/tm-sp64.h (PC_IN_CALL_DUMMY): Redefine as
pc_in_call_dummy_at_entry_point and pc_in_call_dummy_on_stack.
* config/z8k/tm-z8k.h (CALL_DUMMY_LOCATION): Define as ON_STACK.
(USE_GENERIC_DUMMY_FRAMES): Define as zero.
(PC_IN_CALL_DUMMY): Defile as pc_in_call_dummy_on_stack.
Diffstat (limited to 'gdb/config/z8k/tm-z8k.h')
-rw-r--r-- | gdb/config/z8k/tm-z8k.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gdb/config/z8k/tm-z8k.h b/gdb/config/z8k/tm-z8k.h index edc5664..6197d6d 100644 --- a/gdb/config/z8k/tm-z8k.h +++ b/gdb/config/z8k/tm-z8k.h @@ -20,6 +20,11 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +/* NOTE: cagney/2002-11-24: This is a guess. */ +#define USE_GENERIC_DUMMY_FRAMES 0 +#define CALL_DUMMY_LOCATION ON_STACK +#define PC_IN_CALL_DUMMY(pc, sp, frame_address) pc_in_call_dummy_on_stack (pc, sp, frame_address) + #undef TARGET_INT_BIT #undef TARGET_LONG_BIT #undef TARGET_SHORT_BIT |