From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2153) id 95D773949F32; Fri, 14 May 2021 14:55:31 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 95D773949F32 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Jakub Jelinek To: gcc-cvs@gcc.gnu.org Subject: [gcc(refs/vendors/redhat/heads/gcc-8-branch)] bootstrap/87338 - gcc 8.2 fails to bootstrap on ia64 X-Act-Checkin: gcc X-Git-Author: James Clarke X-Git-Refname: refs/vendors/redhat/heads/gcc-8-branch X-Git-Oldrev: 2ec2776aeb73cd14833326005f345cfa5acbc901 X-Git-Newrev: b0a54a549563313c931870c5ce45785f5119a780 Message-Id: <20210514145531.95D773949F32@sourceware.org> Date: Fri, 14 May 2021 14:55:31 +0000 (GMT) X-BeenThere: gcc-cvs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 May 2021 14:55:31 -0000 https://gcc.gnu.org/g:b0a54a549563313c931870c5ce45785f5119a780 commit b0a54a549563313c931870c5ce45785f5119a780 Author: James Clarke Date: Fri Apr 30 10:11:17 2021 +0200 bootstrap/87338 - gcc 8.2 fails to bootstrap on ia64 This uses ASM_OUTPUT_DEBUG_LABEL instead of ASM_GENERATE_INTERNAL_LABEL and ASM_OUTPUT_LABEL. 2019-05-21 James Clarke PR bootstrap/87338 * dwarf2out.c (dwarf2out_inline_entry): Use ASM_OUTPUT_DEBUG_LABEL instead of ASM_GENERATE_INTERNAL_LABEL and ASM_OUTPUT_LABEL. (cherry picked from commit fe18e4e0845c1821ca51e0a12c284b24a2b60f3a) Diff: --- gcc/dwarf2out.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c index 6227874b719..2a2673910ea 100644 --- a/gcc/dwarf2out.c +++ b/gcc/dwarf2out.c @@ -27657,11 +27657,8 @@ dwarf2out_inline_entry (tree block) if (cur_line_info_table) ied->view = cur_line_info_table->view; - char label[MAX_ARTIFICIAL_LABEL_BYTES]; - - ASM_GENERATE_INTERNAL_LABEL (label, BLOCK_INLINE_ENTRY_LABEL, - BLOCK_NUMBER (block)); - ASM_OUTPUT_LABEL (asm_out_file, label); + ASM_OUTPUT_DEBUG_LABEL (asm_out_file, BLOCK_INLINE_ENTRY_LABEL, + BLOCK_NUMBER (block)); } /* Called from finalize_size_functions for size functions so that their body