Index: src/processor/source_line_resolver_base_types.h |
=================================================================== |
--- src/processor/source_line_resolver_base_types.h (revision 1426) |
+++ src/processor/source_line_resolver_base_types.h (working copy) |
@@ -95,6 +95,17 @@ |
// The size of parameters passed to this function on the stack. |
int32_t parameter_size; |
+ |
+ struct Variable { |
+ string name; |
+ string type; |
+ MemAddr address; |
+ MemAddr size; |
+ bool is_register_location_description; |
+ string location; |
+ }; |
+ |
+ std::vector<Variable> variables; |
}; |
struct SourceLineResolverBase::PublicSymbol { |