diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2003-05-28 20:25:10 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2003-05-28 20:25:10 +0000 |
commit | 14898363322c870c5945df9408074e441da130a7 (patch) | |
tree | 140c385a765a9b5f29a6fdf96db1375546db15c0 /gdb/dwarf2read.c | |
parent | 8945c6bb62ecac9645d7f554caf36fff23118b32 (diff) | |
download | gdb-14898363322c870c5945df9408074e441da130a7.zip gdb-14898363322c870c5945df9408074e441da130a7.tar.gz gdb-14898363322c870c5945df9408074e441da130a7.tar.bz2 |
2003-05-28 H.J. Lu <hongjiu.lu@intel.com>
* dwarf2read.c (process_die): Handle DW_TAG_try_block and
DW_TAG_catch_block.
Diffstat (limited to 'gdb/dwarf2read.c')
-rw-r--r-- | gdb/dwarf2read.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gdb/dwarf2read.c b/gdb/dwarf2read.c index 8f927f0..182ee4f 100644 --- a/gdb/dwarf2read.c +++ b/gdb/dwarf2read.c @@ -1768,6 +1768,8 @@ process_die (struct die_info *die, struct objfile *objfile, of a function and make GDB `next' properly over inlined functions. */ break; case DW_TAG_lexical_block: + case DW_TAG_try_block: + case DW_TAG_catch_block: read_lexical_block_scope (die, objfile, cu_header); break; case DW_TAG_class_type: |