aboutsummaryrefslogtreecommitdiff
path: root/gdb/dwarf2/expr.c
diff options
context:
space:
mode:
authorZoran Zaric <Zoran.Zaric@amd.com>2021-02-26 10:14:53 +0000
committerZoran Zaric <zoran.zaric@amd.com>2021-08-05 16:38:48 +0100
commitfb4cdecb7e3b9cab8a83f3e69a9deafcf53501fe (patch)
treeef0493c05bbf26c01ef3c91f82de7b5dbc1035b6 /gdb/dwarf2/expr.c
parent183657edcd11c6fd84b4cf3721250086784999de (diff)
downloadbinutils-fb4cdecb7e3b9cab8a83f3e69a9deafcf53501fe.zip
binutils-fb4cdecb7e3b9cab8a83f3e69a9deafcf53501fe.tar.gz
binutils-fb4cdecb7e3b9cab8a83f3e69a9deafcf53501fe.tar.bz2
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.
Diffstat (limited to 'gdb/dwarf2/expr.c')
-rw-r--r--gdb/dwarf2/expr.c11
1 files changed, 1 insertions, 10 deletions
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)
{
}