From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 368D7384A885; Wed, 15 Apr 2020 10:32:43 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 368D7384A885 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1586946763; bh=4N8NaQhlG1t17/y1wWVCA7e3D2mmWHDZhHpUaJDwM/0=; h=From:To:Subject:Date:From; b=OifmSN2V5sG1TP32H5fnd0nSFmGpd1xZ6EkS8OKSqI+qyqd4I5/b6dxl9Vrthtgk7 B3ZtzIpVm9uyRkZ0286XRmwQI5eV++DcPg90bAyXN8KGhWe01cbrCa6PpK0ktkDs1L YgHhz8XJOu2x7Fzi4XaGS2+p1zG9LcHTa+RmLCA0= From: "rsandifo at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug rtl-optimization/94605] New: [8/9/10 Regression] ICE in early-remat.c:process_block with multi-output asms Date: Wed, 15 Apr 2020 10:32:43 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: rtl-optimization X-Bugzilla-Version: 10.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: rsandifo at gcc dot gnu.org 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 cf_gcctarget 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 X-BeenThere: gcc-bugs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-bugs mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Apr 2020 10:32:43 -0000 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D94605 Bug ID: 94605 Summary: [8/9/10 Regression] ICE in early-remat.c:process_block with multi-output asms Product: gcc Version: 10.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: rtl-optimization Assignee: unassigned at gcc dot gnu.org Reporter: rsandifo at gcc dot gnu.org Target Milestone: --- Target: aarch64*-*-* Compiling the following testcase with -O2 -march=3Darmv8.2-a+sve: typedef int v8si __attribute__((vector_size(32))); int g (v8si, v8si); void f (void) { v8si x =3D {}, y =3D {}; while (g (x, y)) asm ("" : "+w" (x), "+w" (y)); } triggers: internal compiler error: in process_block, at early-remat.c:2051 This is because process_block doesn't handle insns that set multiple candidate registers.=