From 2ef46c2fbbd18c3f411ef294c2c6694a1308a5a5 Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Thu, 26 Mar 2020 09:28:08 -0600 Subject: Trivial fix in dwarf_decode_macro_bytes One spot in dwarf_decode_macro_bytes could use the existing "objfile" local variable. gdb/ChangeLog 2020-03-26 Tom Tromey * dwarf2/macro.c (dwarf_decode_macro_bytes): Use objfile local variable. --- gdb/dwarf2/macro.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gdb/dwarf2/macro.c') diff --git a/gdb/dwarf2/macro.c b/gdb/dwarf2/macro.c index 4958639..6c2d251 100644 --- a/gdb/dwarf2/macro.c +++ b/gdb/dwarf2/macro.c @@ -512,9 +512,9 @@ dwarf_decode_macro_bytes (struct dwarf2_per_objfile *dwarf2_per_objfile, body = dwz->read_string (objfile, str_offset); } else - body = (dwarf2_per_objfile->str.read_string - (dwarf2_per_objfile->objfile, - str_offset, "DW_FORM_strp")); + body = dwarf2_per_objfile->str.read_string (objfile, + str_offset, + "DW_FORM_strp"); } is_define = (macinfo_type == DW_MACRO_define -- cgit v1.1