• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

GNU Binutils with patches for OS216


Commit MetaInfo

Revision08a76f8ab86efbd5c85c9bd3979c4c06b9e84258 (tree)
Time2015-05-14 06:09:19
AuthorMartin Galvan <martin.galvan@tall...>
CommiterDoug Evans

Log Message

dwarf2read.c (die_needs_namespace): Return 1 for DW_TAG_inlined_subroutine.

gdb/ChangeLog:

* dwarf2read.c (die_needs_namespace): Return 1 for
DW_TAG_inlined_subroutine.

Change Summary

Incremental Difference

--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,8 @@
1+2015-05-13 Martin Galvan <martin.galvan@tallertechnologies.com>
2+
3+ * dwarf2read.c (die_needs_namespace): Return 1 for
4+ DW_TAG_inlined_subroutine.
5+
16 2015-05-13 Jan Kratochvil <jan.kratochvil@redhat.com>
27
38 * regcache.c (regcache_cpy_no_passthrough): New declaration.
--- a/gdb/dwarf2read.c
+++ b/gdb/dwarf2read.c
@@ -8363,6 +8363,7 @@ die_needs_namespace (struct die_info *die, struct dwarf2_cu *cu)
83638363 case DW_TAG_enumeration_type:
83648364 case DW_TAG_enumerator:
83658365 case DW_TAG_subprogram:
8366+ case DW_TAG_inlined_subroutine:
83668367 case DW_TAG_member:
83678368 case DW_TAG_imported_declaration:
83688369 return 1;