]> git.ipfire.org Git - thirdparty/elfutils.git/commitdiff
2007-10-02 Roland McGrath <roland@redhat.com>
authorRoland McGrath <roland@redhat.com>
Tue, 2 Oct 2007 20:55:05 +0000 (20:55 +0000)
committerRoland McGrath <roland@redhat.com>
Tue, 2 Oct 2007 20:55:05 +0000 (20:55 +0000)
* libdw_visit_scopes.c (classify_die): Return walk for class_type and
structure_type.

libdw/ChangeLog
libdw/libdw_visit_scopes.c

index b6919a524f71d88908c859901918a9b02fcd739e..7b6a44cfc3a3a2ecf88b2a7ecca3c9a7cc857d81 100644 (file)
@@ -1,3 +1,8 @@
+2007-10-02  Roland McGrath  <roland@redhat.com>
+
+       * libdw_visit_scopes.c (classify_die): Return walk for class_type and
+       structure_type.
+
 2007-08-07  Roland McGrath  <roland@redhat.com>
 
        * dwarf_getscopes.c (pc_match): Swallow dwarf_haspc error return when
index a7b6994af9d9d8953ecb1c68bc753489b16fb955..9c7c37891c0e2c9d6fd38e15bdfac4784adfb7e4 100644 (file)
@@ -1,5 +1,5 @@
 /* Helper functions to descend DWARF scope trees.
-   Copyright (C) 2005,2006 Red Hat, Inc.
+   Copyright (C) 2005,2006,2007 Red Hat, Inc.
    This file is part of Red Hat elfutils.
 
    Red Hat elfutils is free software; you can redistribute it and/or modify
@@ -80,6 +80,8 @@ classify_die (Dwarf_Die *die)
 
       /* DIEs without addresses that can own DIEs with addresses.  */
     case DW_TAG_namespace:
+    case DW_TAG_class_type:
+    case DW_TAG_structure_type:
       return walk;
 
       /* Special indirection required.  */