summaryrefslogtreecommitdiff
path: root/gdb/blockframe.c
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2003-08-07 23:41:57 +0000
committerAndrew Cagney <cagney@redhat.com>2003-08-07 23:41:57 +0000
commit1e1917f91d5666b72b77034d86ff4860037cea04 (patch)
treeba6cc427a16a327afa0a0fc8da879e1e4fde5e2e /gdb/blockframe.c
parent592e91925d19ce76ff6e99c5909ec3e102f71f7a (diff)
downloadgdb-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/blockframe.c')
-rw-r--r--gdb/blockframe.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/blockframe.c b/gdb/blockframe.c
index 9a11c900578..4e689ac644b 100644
--- a/gdb/blockframe.c
+++ b/gdb/blockframe.c
@@ -59,7 +59,8 @@ inside_entry_file (CORE_ADDR addr)
return 1;
if (symfile_objfile == 0)
return 0;
- if (CALL_DUMMY_LOCATION == AT_ENTRY_POINT)
+ if (CALL_DUMMY_LOCATION == AT_ENTRY_POINT
+ || CALL_DUMMY_LOCATION == AT_SYMBOL)
{
/* Do not stop backtracing if the pc is in the call dummy
at the entry point. */