diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2020-11-30 23:50:39 +0000 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2020-11-30 23:50:39 +0000 |
commit | 77819fe3944f22678c3bcdf1d773a095441f5140 (patch) | |
tree | ddc9dcd1edebe1e94204dfb4bf09ade2c9552f0f /sys-devel/gcc/files/gcc-8.3.0-ia64-bootstrap.patch | |
parent | 826d1b3f488d3549cbd42ccc73ad90ea1ce88f0b (diff) |
toolchain bump
Diffstat (limited to 'sys-devel/gcc/files/gcc-8.3.0-ia64-bootstrap.patch')
-rw-r--r-- | sys-devel/gcc/files/gcc-8.3.0-ia64-bootstrap.patch | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/sys-devel/gcc/files/gcc-8.3.0-ia64-bootstrap.patch b/sys-devel/gcc/files/gcc-8.3.0-ia64-bootstrap.patch deleted file mode 100644 index 0a0a25b5..00000000 --- a/sys-devel/gcc/files/gcc-8.3.0-ia64-bootstrap.patch +++ /dev/null @@ -1,41 +0,0 @@ -https://gcc.gnu.org/PR87338 - -From 1cc1dc32fcf6b47db4e6d28f55de343713f824a4 Mon Sep 17 00:00:00 2001 -From: James Clarke <jrtc27@jrtc27.com> -Date: Thu, 25 Apr 2019 15:58:55 +0200 -Subject: [PATCH] PR bootstrap/87338: Fix ia64 bootstrap comparison regression - in r257511 -To: gcc-patches@gcc.gnu.org - -By using ASM_OUTPUT_LABEL, r257511 forced the assembler to start a new -bundle when emitting an inline entry label on. Instead, use -ASM_OUTPUT_DEBUG_LABEL like for the block begin and end labels so tags are -emitted rather than labels. - -gcc/ - PR bootstrap/87338 - * dwarf2out.c (dwarf2out_inline_entry): Use ASM_OUTPUT_DEBUG_LABEL - instead of ASM_GENERATE_INTERNAL_LABEL and ASM_OUTPUT_LABEL. ---- - gcc/dwarf2out.c | 7 ++----- - 1 file changed, 2 insertions(+), 5 deletions(-) - ---- a/gcc/dwarf2out.c -+++ b/gcc/dwarf2out.c -@@ -27670,11 +27670,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 --- -1.8.5.3 - |