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 | 018d1b488ce26f1c957db653de4e8a6a58f057c0 (patch) | |
tree | bee6750bb6ab3fac2c5c5af3224512d471c91666 /gdb | |
parent | e9a2674e1d04f307ae4ffb7e4571c9878f63ff66 (diff) | |
download | gdb-018d1b488ce26f1c957db653de4e8a6a58f057c0.zip gdb-018d1b488ce26f1c957db653de4e8a6a58f057c0.tar.gz gdb-018d1b488ce26f1c957db653de4e8a6a58f057c0.tar.bz2 |
* config/pa/tm-hppa64.h (FRAME_ARGS_ADDRESS): Delete macro, not useful.
(INIT_FRAME_AP): Likewise.
(EXTRA_FRAME_INFO): Likewise.
Diffstat (limited to 'gdb')
-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 ed13cfd..9e6cc31 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 e6177b0..2610cac 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) |