diff options
author | John Gilmore <gnu@cygnus> | 1991-11-23 01:15:11 +0000 |
---|---|---|
committer | John Gilmore <gnu@cygnus> | 1991-11-23 01:15:11 +0000 |
commit | b68da3b817a695db98248caca41314aca1e09ff4 (patch) | |
tree | b8da23a22c3348beff569daf6c64ab7a4980cdcd /gdb/tm-tahoe.h | |
parent | ed07738e1a85b6cb1dbf17c1f803d306d65b45fb (diff) | |
download | gdb-b68da3b817a695db98248caca41314aca1e09ff4.zip gdb-b68da3b817a695db98248caca41314aca1e09ff4.tar.gz gdb-b68da3b817a695db98248caca41314aca1e09ff4.tar.bz2 |
No need to offset args from frame pointer.
Diffstat (limited to 'gdb/tm-tahoe.h')
-rw-r--r-- | gdb/tm-tahoe.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/tm-tahoe.h b/gdb/tm-tahoe.h index 9456808..e20c7f9 100644 --- a/gdb/tm-tahoe.h +++ b/gdb/tm-tahoe.h @@ -233,7 +233,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* In most of GDB, getting the args address is too important to just say "I don't know". */ -#define FRAME_ARGS_ADDRESS(fi) ((fi)->frame+4) +#define FRAME_ARGS_ADDRESS(fi) ((fi)->frame) /* Address to use as an anchor for finding local variables */ |