diff options
author | Zoran Zaric <Zoran.Zaric@amd.com> | 2021-02-26 10:14:53 +0000 |
---|---|---|
committer | Zoran Zaric <zoran.zaric@amd.com> | 2021-08-05 16:38:48 +0100 |
commit | fb4cdecb7e3b9cab8a83f3e69a9deafcf53501fe (patch) | |
tree | ef0493c05bbf26c01ef3c91f82de7b5dbc1035b6 /gdb/dwarf2/expr.c | |
parent | 183657edcd11c6fd84b4cf3721250086784999de (diff) | |
download | binutils-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.c | 11 |
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) { } |