Commit c9ae62c2 by James Clarke Committed by Jeff Law

re PR bootstrap/87338 (gcc 8.2 fails to bootstrap on ia64)

	PR bootstrap/87338
	* dwarf2out.c (dwarf2out_inline_entry): Use ASM_OUTPUT_DEBUG_LABEL
	instead of ASM_GENERATE_INTERNAL_LABEL and ASM_OUTPUT_LABEL.

From-SVN: r271472
parent 1c4320eb
2019-05-21 James Clarke <jrtc27@jrtc27.com>
PR bootstrap/87338
* dwarf2out.c (dwarf2out_inline_entry): Use ASM_OUTPUT_DEBUG_LABEL
instead of ASM_GENERATE_INTERNAL_LABEL and ASM_OUTPUT_LABEL.
2019-05-21 Uroš Bizjak <ubizjak@gmail.com> 2019-05-21 Uroš Bizjak <ubizjak@gmail.com>
* config/i386/cpuid.h (__cpuid): For 32bit targets, zero * config/i386/cpuid.h (__cpuid): For 32bit targets, zero
......
...@@ -27674,11 +27674,8 @@ dwarf2out_inline_entry (tree block) ...@@ -27674,11 +27674,8 @@ dwarf2out_inline_entry (tree block)
if (cur_line_info_table) if (cur_line_info_table)
ied->view = cur_line_info_table->view; ied->view = cur_line_info_table->view;
char label[MAX_ARTIFICIAL_LABEL_BYTES]; ASM_OUTPUT_DEBUG_LABEL (asm_out_file, BLOCK_INLINE_ENTRY_LABEL,
BLOCK_NUMBER (block));
ASM_GENERATE_INTERNAL_LABEL (label, BLOCK_INLINE_ENTRY_LABEL,
BLOCK_NUMBER (block));
ASM_OUTPUT_LABEL (asm_out_file, label);
} }
/* Called from finalize_size_functions for size functions so that their body /* Called from finalize_size_functions for size functions so that their body
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment