From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 469773858D28; Mon, 30 Jan 2023 11:31:13 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 469773858D28 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1675078273; bh=GUVyEfdBgR/e6kX0K9eGKavieOknRUm9njzXGN4L/ts=; h=From:To:Subject:Date:From; b=i+2suAy08V3G+gkpOViWb01mfGvQkj3FS2YL/lyWBbiJIGJex233l5jfBbRUpxuKX MIngMvavRH/0rtgPDpYMa+ejBpPLPUfnZNWI2C5hocCyFZiIfTbCMasT09QILkl0Wq 59E5qckEL6BAGxkOMuMIPhihWyf0GbrMRm9jx3hU= From: "dcb314 at hotmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug c/108596] New: error: EDGE_CROSSING missing across section boundary Date: Mon, 30 Jan 2023 11:31:12 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c X-Bugzilla-Version: 13.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: dcb314 at hotmail dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 List-Id: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D108596 Bug ID: 108596 Summary: error: EDGE_CROSSING missing across section boundary Product: gcc Version: 13.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: c Assignee: unassigned at gcc dot gnu.org Reporter: dcb314 at hotmail dot com Target Milestone: --- For this C code, derived from yesterday's linux-6.2-rc6: enum { false, true }; __attribute__((__cold__)) _printk(); _static_cpu_has() { asm goto("" : : : : t_yes, t_no); t_yes: return true; t_no: return false; } acpi_sleep_prepare() { _Bool __trans_tmp_1 =3D _static_cpu_has(); if (!__trans_tmp_1) acpi_set_waking_vector(); _printk(); } does this: $ /home/dcb36/gcc/results/bin/gcc -c -w -std=3Dgnu11 -O2 bug878.c=20 bug878.c: In function =E2=80=98acpi_sleep_prepare=E2=80=99: bug878.c:15:1: error: EDGE_CROSSING missing across section boundary 15 | } | ^ during RTL pass: bbpart bug878.c:15:1: internal compiler error: verify_flow_info failed 0x8818f1 verify_flow_info() ../../trunk.d1/gcc/cfghooks.cc:285 $ /home/dcb36/gcc/results/bin/gcc -c -w -std=3Dgnu11 -O1 bug878.c=20 $ The bug first seems to occur sometime before g:9b111debbfb79a0a, dated 20221229.=