From fb4cdecb7e3b9cab8a83f3e69a9deafcf53501fe Mon Sep 17 00:00:00 2001 From: Zoran Zaric Date: Fri, 26 Feb 2021 10:14:53 +0000 Subject: Cleanup of the dwarf_expr_context constructor Move the initial values for dwarf_expr_context class data members to the class declaration in expr.h. gdb/ChangeLog: * dwarf2/expr.c (dwarf_expr_context::dwarf_expr_context): Remove initial data members values. * dwarf2/expr.h (dwarf_expr_context): Add initial values to the class data members. --- gdb/dwarf2/expr.c | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) (limited to 'gdb/dwarf2/expr.c') diff --git a/gdb/dwarf2/expr.c b/gdb/dwarf2/expr.c index 107b9cd..aa166b2 100644 --- a/gdb/dwarf2/expr.c +++ b/gdb/dwarf2/expr.c @@ -90,16 +90,7 @@ dwarf_expr_context::address_type () const /* Create a new context for the expression evaluator. */ dwarf_expr_context::dwarf_expr_context (dwarf2_per_objfile *per_objfile) -: gdbarch (NULL), - addr_size (0), - ref_addr_size (0), - recursion_depth (0), - max_recursion_depth (0x100), - location (DWARF_VALUE_MEMORY), - len (0), - data (NULL), - initialized (0), - per_objfile (per_objfile) +: per_objfile (per_objfile) { } -- cgit v1.1