From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 88D57388A814; Wed, 10 Jun 2020 13:12:36 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 88D57388A814 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1591794756; bh=wHK9wcGeWe/9iK6a4WCj7Nmf4o5IuIbVRua1NW6o4+o=; h=From:To:Subject:Date:In-Reply-To:References:From; b=WeNgLljHvuTRh/SdlG91gYebMQW+8xTriXNHLP5l1H2FpVnADAbqdGP/ESiKTGmzS w8KKrOG8okWFuwPQxGlLX0u5zrKvM5aRoIO5b7fP7PiafIBGTHQ/ae47tBBojtGJSw 4xBAYMDptK0sFFQkzFkLhYbmwQlWNzjYYkgA2UZc= From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug debug/95576] [11 Regression] -fcompare-debug failure with -O3 -fno-tree-forwprop -fvect-cost-model=unlimited Date: Wed, 10 Jun 2020 13:12:36 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: debug X-Bugzilla-Version: 11.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth 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: 11.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 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, 10 Jun 2020 13:12:36 -0000 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D95576 --- Comment #4 from Richard Biener --- It's also odd vectorization. t.c:14:3: note: Detected interleaving store this_3(D)->D.2378._vptr.S and _1->_vptr.S t.c:14:3: note: Queuing group with duplicate access for fixup t.c:14:3: missed: not consecutive access _6 =3D _1->s; t.c:14:3: note: Detected interleaving store of size 1 t.c:14:3: note: this_3(D)->D.2378._vptr.S =3D &MEM = [(void *)&_ZTV1T + 16B]; t.c:14:3: note: Detected interleaving store of size 1 t.c:14:3: note: _1->_vptr.S =3D &MEM [(void *)&_ZTV= 1S + 16B]; so we split the group into two of size one and vectorizing with V1DImode. = But that's something else to fix I guess.=