aboutsummaryrefslogtreecommitdiff
path: root/gdb/dwarf2/macro.h
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2020-03-26 09:28:08 -0600
committerTom Tromey <tom@tromey.com>2020-03-26 09:28:16 -0600
commit5a0e026fe12a4b1a94878494facf2b5f173a3b9c (patch)
tree4991c10b761b7f312012e1d18c6270f9d9fe3665 /gdb/dwarf2/macro.h
parent8844c11b8bc1cfa70a63a8875e08345c96abecfe (diff)
downloadgdb-5a0e026fe12a4b1a94878494facf2b5f173a3b9c.zip
gdb-5a0e026fe12a4b1a94878494facf2b5f173a3b9c.tar.gz
gdb-5a0e026fe12a4b1a94878494facf2b5f173a3b9c.tar.bz2
Use a const line_header in macro reader
This changes the DWARF macro reader to use a const line_header. gdb/ChangeLog 2020-03-26 Tom Tromey <tom@tromey.com> * dwarf2/read.c (dwarf_decode_macros): Make "lh" const. * dwarf2/macro.h (dwarf_decode_macros): Constify "lh" parameter. * dwarf2/macro.c (macro_start_file): Constify "lh" parameter. (dwarf_decode_macro_bytes, dwarf_decode_macros): Likewise.
Diffstat (limited to 'gdb/dwarf2/macro.h')
-rw-r--r--gdb/dwarf2/macro.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/dwarf2/macro.h b/gdb/dwarf2/macro.h
index 3937c55..b92987c 100644
--- a/gdb/dwarf2/macro.h
+++ b/gdb/dwarf2/macro.h
@@ -25,7 +25,7 @@ struct buildsym_compunit;
extern void dwarf_decode_macros (struct dwarf2_per_objfile *dwarf2_per_objfile,
buildsym_compunit *builder,
dwarf2_section_info *section,
- struct line_header *lh,
+ const struct line_header *lh,
unsigned int offset_size,
unsigned int offset,
int section_is_gnu);