diff options
author | Andrew Cagney <cagney@redhat.com> | 2003-08-07 23:41:57 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2003-08-07 23:41:57 +0000 |
commit | 1e1917f91d5666b72b77034d86ff4860037cea04 (patch) | |
tree | ba6cc427a16a327afa0a0fc8da879e1e4fde5e2e /gdb/inferior.h | |
parent | 592e91925d19ce76ff6e99c5909ec3e102f71f7a (diff) | |
download | gdb-1e1917f91d5666b72b77034d86ff4860037cea04.tar.gz |
2003-08-07 Andrew Cagney <cagney@redhat.com>
* inferior.h (AT_SYMBOL): Define.
* blockframe.c (inside_entry_file): Check for AT_SYMBOL.
* infcall.c (call_function_by_hand): Add code to handle AT_SYMBOL.
* mips-tdep.c (mips_call_dummy_address): Delete function.
(mips_gdbarch_init): Set call_dummy_location to AT_SYMBOL, do not
set call_dummy_address.
Diffstat (limited to 'gdb/inferior.h')
-rw-r--r-- | gdb/inferior.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gdb/inferior.h b/gdb/inferior.h index ed49d2315d9..60191f2b98f 100644 --- a/gdb/inferior.h +++ b/gdb/inferior.h @@ -438,6 +438,7 @@ extern int attach_flag; /* Possible values for CALL_DUMMY_LOCATION. */ #define ON_STACK 1 #define AT_ENTRY_POINT 4 +#define AT_SYMBOL 5 /* FIXME: cagney/2000-04-17: gdbarch should manage this. The default shouldn't be necessary. */ |