diff options
author | Joel Brobecker <brobecker@gnat.com> | 2003-03-31 22:12:48 +0000 |
---|---|---|
committer | Joel Brobecker <brobecker@gnat.com> | 2003-03-31 22:12:48 +0000 |
commit | ae8be91e7c03f2cc6d5a8290a2975d97090e971f (patch) | |
tree | cfa7fa74ec37032d362f738110f77079b6819ed4 | |
parent | 80536101980635aedd5e7ba966a9e2c47abaa039 (diff) | |
download | gdb-ae8be91e7c03f2cc6d5a8290a2975d97090e971f.tar.gz |
* config/pa/tm-hppa64.h (FRAME_ARGS_ADDRESS): Delete macro, not useful.
(INIT_FRAME_AP): Likewise.
(EXTRA_FRAME_INFO): Likewise.
-rw-r--r-- | gdb/ChangeLog | 6 | ||||
-rw-r--r-- | gdb/config/pa/tm-hppa64.h | 8 |
2 files changed, 6 insertions, 8 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index ed13cfdc22e..9e6cc319da8 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,9 @@ +2003-03-31 J. Brobecker <brobecker@gnat.com> + + * config/pa/tm-hppa64.h (FRAME_ARGS_ADDRESS): Delete macro, not useful. + (INIT_FRAME_AP): Likewise. + (EXTRA_FRAME_INFO): Likewise. + 2003-03-31 Andrew Cagney <cagney@redhat.com> * gdbarch.sh: Include "symfile.h". diff --git a/gdb/config/pa/tm-hppa64.h b/gdb/config/pa/tm-hppa64.h index e6177b05943..2610caceedd 100644 --- a/gdb/config/pa/tm-hppa64.h +++ b/gdb/config/pa/tm-hppa64.h @@ -122,20 +122,12 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #define SR5_REGNUM 48 -#undef FRAME_ARGS_ADDRESS -#define FRAME_ARGS_ADDRESS(fi) ((fi)->ap) - /* We access locals from SP. This may not work for frames which call alloca; for those, we may need to consult unwind tables. jimb: FIXME. */ #undef FRAME_LOCALS_ADDRESS #define FRAME_LOCALS_ADDRESS(fi) ((fi)->frame) -#define INIT_FRAME_AP init_frame_ap - -#define EXTRA_FRAME_INFO \ - CORE_ADDR ap; - /* For a number of horrible reasons we may have to adjust the location of variables on the stack. Ugh. jimb: why? */ #define HPREAD_ADJUST_STACK_ADDRESS(ADDR) hpread_adjust_stack_address(ADDR) |