From 2ebf8bfda476966209d681470ebe6301fb10db0a Mon Sep 17 00:00:00 2001 From: Bernhard Schommer Date: Tue, 24 Mar 2015 16:07:45 +0100 Subject: Added missing functions for printing the structs and unions. Still missing printing of packed structs. --- debug/DwarfTypes.mli | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'debug/DwarfTypes.mli') diff --git a/debug/DwarfTypes.mli b/debug/DwarfTypes.mli index 22f88a12..d4fb0df9 100644 --- a/debug/DwarfTypes.mli +++ b/debug/DwarfTypes.mli @@ -133,7 +133,7 @@ type dw_tag_pointer_type = type dw_tag_structure_type = { structure_file_loc: file_loc option; - structure_byte_size: constant; + structure_byte_size: constant option; structure_declaration: flag option; structure_name: string; } @@ -169,9 +169,10 @@ type dw_tag_typedef = type dw_tag_union_type = { - union_file_loc: file_loc option; - union_byte_size: constant; - union_name: string; + union_file_loc: file_loc option; + union_byte_size: constant option; + union_declaration: flag option; + union_name: string; } type dw_tag_unspecified_parameter = -- cgit