diff options
author | Jim Kingdon <jkingdon@engr.sgi.com> | 1993-07-29 18:41:26 +0000 |
---|---|---|
committer | Jim Kingdon <jkingdon@engr.sgi.com> | 1993-07-29 18:41:26 +0000 |
commit | 4432b9f9ff3f14ddef531b46396206484098678c (patch) | |
tree | e5c4c0a55f6733d0a1cc62f0c35d7f396bf7eeab /gdb/hppa-tdep.c | |
parent | e661686291036e6ce6214ddc33a3829a0561a8c6 (diff) | |
download | gdb-4432b9f9ff3f14ddef531b46396206484098678c.zip gdb-4432b9f9ff3f14ddef531b46396206484098678c.tar.gz gdb-4432b9f9ff3f14ddef531b46396206484098678c.tar.bz2 |
* hppa-tdep.c: Remove all uses of use_unwind and `set use_unwind'
command. Now we use unwind info by default if we can find it.
Diffstat (limited to 'gdb/hppa-tdep.c')
-rw-r--r-- | gdb/hppa-tdep.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gdb/hppa-tdep.c b/gdb/hppa-tdep.c index 4bad651..4def91a 100644 --- a/gdb/hppa-tdep.c +++ b/gdb/hppa-tdep.c @@ -541,12 +541,11 @@ frame_chain_valid (chain, thisframe) FRAME thisframe; { struct minimal_symbol *msym; + struct unwind_table_entry *u; if (!chain) return 0; - struct unwind_table_entry *u; - u = find_unwind_entry (thisframe->pc); msym = lookup_minimal_symbol_by_pc (FRAME_SAVED_PC (thisframe)); |