dwarf2out.c (switch_to_eh_frame_section): Add ATTRIBUTE_UNUSED to "back" parameter.

* dwarf2out.c (switch_to_eh_frame_section): Add ATTRIBUTE_UNUSED to
        "back" parameter. Declare label in #if block.

From-SVN: r227911
This commit is contained in:
David Edelsohn 2015-09-18 18:03:26 +00:00 committed by David Edelsohn
parent dcd7a7dfce
commit 7e704eb4d6
2 changed files with 7 additions and 4 deletions

View File

@ -1,3 +1,8 @@
2015-09-18 David Edelsohn <dje.gcc@gmail.com>
* dwarf2out.c (switch_to_eh_frame_section): Add ATTRIBUTE_UNUSED to
"back" parameter. Declare label in #if block.
2015-09-18 Uros Bizjak <ubizjak@gmail.com>
PR middle-end/67619

View File

@ -434,10 +434,8 @@ stripattributes (const char *s)
for collect2 the first time around. */
static void
switch_to_eh_frame_section (bool back)
switch_to_eh_frame_section (bool back ATTRIBUTE_UNUSED)
{
tree label;
if (eh_frame_section == 0)
{
int flags;
@ -481,7 +479,7 @@ switch_to_eh_frame_section (bool back)
collect2. */
if (!back)
{
label = get_file_function_name ("F");
tree label = get_file_function_name ("F");
ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (PTR_SIZE));
targetm.asm_out.globalize_label (asm_out_file,
IDENTIFIER_POINTER (label));