From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 0BFD9385801F; Wed, 9 Nov 2022 01:13:27 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 0BFD9385801F DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1667956407; bh=Y/4DJSnHXNOWL9a1gqSpfqqslS1Xb7UYXqUSNeQJH20=; h=From:To:Subject:Date:In-Reply-To:References:From; b=XWRr60HxRGRQjsyi39hly7sooFNPxEYr9FlVCMZOpv7y7tIW952HMBHPRm2tPMqqD 9gc9I219PeAE7PBbIo0GsC4IZ/B3C72LIhs2/fhECg/uLd0Qwi03FXTP7LhEYaSMcN X3xGtgNcHnNpAZyjONeYEdLKWRfP0aD8R8mjpaRI= From: "cvs-commit at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/107540] [13 Regression] ICE: SIGSEGV in memory_operand(rtx_def*, machine_mode) (recog.cc:1834) with -flive-range-shrinkage Date: Wed, 09 Nov 2022 01:13:19 +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: 13.0 X-Bugzilla-Keywords: ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: cvs-commit 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: 13.0 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 List-Id: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D107540 --- Comment #3 from CVS Commits --- The master branch has been updated by hongtao Liu : https://gcc.gnu.org/g:916bec9a05ea522c81381e0c93590d46965d9c7b commit r13-3821-g916bec9a05ea522c81381e0c93590d46965d9c7b Author: liuhongt Date: Mon Nov 7 09:55:25 2022 +0800 Fix incorrect insn type to avoid ICE in memory attr auto-detection. Memory attribute auto detection will check operand 2 for type sselog, and check operand 1 for type sselog1. For below 2 insns, there's no operand 2. Change type to sselog1. gcc/ChangeLog: PR target/107540 * config/i386/sse.md (avx512f_movddup512): Change type from sselog to sselog1. (avx_movddup256): Ditto. gcc/testsuite/ChangeLog: * gcc.target/i386/pr107540.c: New test.=