diff options
author | Jakub Jelinek <jakub@redhat.com> | 2019-03-01 09:10:19 +0100 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2019-03-01 09:10:19 +0100 |
commit | 743f0ba244af82c835f3377dfbf0f7061e26c41a (patch) | |
tree | 47270bdfeb7675451ad550fb5a06d89617422ebc /gcc/dwarf2out.c | |
parent | 2bf2aa34d132ced67908cbde5819c3bbbc0d6b3f (diff) | |
download | gcc-743f0ba244af82c835f3377dfbf0f7061e26c41a.zip gcc-743f0ba244af82c835f3377dfbf0f7061e26c41a.tar.gz gcc-743f0ba244af82c835f3377dfbf0f7061e26c41a.tar.bz2 |
re PR bootstrap/89539 (gcc fails to build/bootstrap on MACOSX)
PR bootstrap/89539
* dwarf2out.c (output_comdat_type_unit): Add ATTRIBUTE_UNUSED to
early_lto_debug argument.
From-SVN: r269301
Diffstat (limited to 'gcc/dwarf2out.c')
-rw-r--r-- | gcc/dwarf2out.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c index 17be26f..1b17f2b 100644 --- a/gcc/dwarf2out.c +++ b/gcc/dwarf2out.c @@ -11234,7 +11234,8 @@ output_skeleton_debug_sections (dw_die_ref comp_unit, /* Output a comdat type unit DIE and its children. */ static void -output_comdat_type_unit (comdat_type_node *node, bool early_lto_debug) +output_comdat_type_unit (comdat_type_node *node, + bool early_lto_debug ATTRIBUTE_UNUSED) { const char *secname; char *tmp; |