summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoland McGrath <roland@redhat.com>2009-09-16 13:45:57 -0700
committerRoland McGrath <roland@redhat.com>2009-09-16 13:46:55 -0700
commit6be6402d1514d149e6e6adf66a5c50b80b8bbb0f (patch)
treef07930b5159e41c65918ff1c91202996a5d1874a
parent0ec1af8d6f51d29ee6191a0160e934bef1dd94d3 (diff)
downloadsystemtap-steved-6be6402d1514d149e6e6adf66a5c50b80b8bbb0f.tar.gz
systemtap-steved-6be6402d1514d149e6e6adf66a5c50b80b8bbb0f.tar.xz
systemtap-steved-6be6402d1514d149e6e6adf66a5c50b80b8bbb0f.zip
Handle DW_TAG_reference_type in loc2c-test.
* loc2c-test.c (handle_variable): Handle DW_TAG_reference_type.
-rw-r--r--loc2c-test.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/loc2c-test.c b/loc2c-test.c
index 46c45827..b8883876 100644
--- a/loc2c-test.c
+++ b/loc2c-test.c
@@ -304,6 +304,7 @@ handle_variable (Dwarf_Die *lscopes, int lnscopes, int out,
break;
case DW_TAG_pointer_type:
+ case DW_TAG_reference_type:
if (store)
error (2, 0, _("store not supported for pointer type"));
c_translate_pointer (&pool, 1, cubias, typedie, &tail);