From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 48DB43858D35; Tue, 16 Jun 2020 02:15:29 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 48DB43858D35 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1592273729; bh=KjqABMrNXjbgzuRE7mbqkWyMfaH9JURuGaDyNSxuyM8=; h=From:To:Subject:Date:In-Reply-To:References:From; b=b+jXS9BPJvbHq1Naxpr4gCZy5WGOKZ8oje5Y8p3hUR41kCTgntAzyd09fh6hzuTTK b/dpNy2+TH8KEmTRq0NsXRDEbelKkV4xMnPbpLrQim0H3pzkDXopp4OidgEx6mHYIl nz5HoAmNgyN69BsTK8wC8Ume1m01dTf/Ot6lJYZ0= From: "cvs-commit at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/95683] RISC-V: internal compiler error: in riscv_gpr_save_operation_p, at config/riscv/riscv.c:5219 Date: Tue, 16 Jun 2020 02:15:29 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: unknown X-Bugzilla-Keywords: ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: cvs-commit at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED 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: Message-ID: In-Reply-To: References: 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: Tue, 16 Jun 2020 02:15:29 -0000 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D95683 --- Comment #1 from CVS Commits --- The master branch has been updated by Kito Cheng : https://gcc.gnu.org/g:beaf12b49ae030505194cdcac18b5c8533a43921 commit r11-1346-gbeaf12b49ae030505194cdcac18b5c8533a43921 Author: Kito Cheng Date: Tue Jun 16 10:14:13 2020 +0800 RISC-V: Fix ICE on riscv_gpr_save_operation_p [PR95683] - riscv_gpr_save_operation_p might try to match parallel on other patterns like inline asm pattern, and then it might trigger ther assertion checking there, so we could trun it into a early exit chec= k. gcc/ChangeLog: PR target/95683 * config/riscv/riscv.c (riscv_gpr_save_operation_p): Remove assertion and turn it into a early exit check. gcc/testsuite/ChangeLog PR target/95683 * gcc.target/riscv/pr95683.c: New.=