From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1851) id 013DA3857C75; Tue, 14 Sep 2021 12:36:35 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 013DA3857C75 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Martin Liska To: gcc-cvs@gcc.gnu.org Subject: [gcc(refs/users/marxin/heads/casm-state-v3)] Disable early debug info file. X-Act-Checkin: gcc X-Git-Author: Martin Liska X-Git-Refname: refs/users/marxin/heads/casm-state-v3 X-Git-Oldrev: 7f4d9cdf3dfe184d9c9d549abfa4fee2410b5068 X-Git-Newrev: 5718f92aff6162f9b3ba4866354ecc76b6979fc9 Message-Id: <20210914123635.013DA3857C75@sourceware.org> Date: Tue, 14 Sep 2021 12:36:35 +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: Tue, 14 Sep 2021 12:36:35 -0000 https://gcc.gnu.org/g:5718f92aff6162f9b3ba4866354ecc76b6979fc9 commit 5718f92aff6162f9b3ba4866354ecc76b6979fc9 Author: Martin Liska Date: Tue Sep 14 14:34:32 2021 +0200 Disable early debug info file. Diff: --- gcc/dwarf2out.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c index acc3a97e06a..cbfeb2447dd 100644 --- a/gcc/dwarf2out.c +++ b/gcc/dwarf2out.c @@ -32918,8 +32918,8 @@ dwarf2out_early_finish (const char *filename) return; /* Initialize an early LTO debug output file. */ - lto_debug_asm->out_file = fopen ("/tmp/lto-debug.s", "w"); - push_asm (lto_debug_asm); +// lto_debug_asm->out_file = fopen ("/tmp/lto-debug.s", "w"); +// push_asm (lto_debug_asm); /* Now as we are going to output for LTO initialize sections and labels to the LTO variants. We don't need a random-seed postfix as other @@ -33044,7 +33044,7 @@ dwarf2out_early_finish (const char *filename) output_indirect_string> (form); } - pop_asm (); +// pop_asm (); /* Switch back to the text section. */ switch_to_section (casm->sections.text);