summaryrefslogtreecommitdiffstats
path: root/staptree.h
diff options
context:
space:
mode:
Diffstat (limited to 'staptree.h')
-rw-r--r--staptree.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/staptree.h b/staptree.h
index 7e9506bb..16f0256a 100644
--- a/staptree.h
+++ b/staptree.h
@@ -229,11 +229,12 @@ struct target_symbol: public symbol
comp_struct_member,
comp_literal_array_index
};
+ bool addressof;
std::string base_name;
std::vector<std::pair<component_type, std::string> > components;
std::string probe_context_var;
semantic_error* saved_conversion_error;
- target_symbol(): saved_conversion_error (0) {}
+ target_symbol(): addressof(false), saved_conversion_error (0) {}
void print (std::ostream& o) const;
void visit (visitor* u);
};