From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id DEE123858C36; Mon, 8 May 2023 18:04:49 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org DEE123858C36 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1683569089; bh=bYdcSqOSBssHaRbnytHh+phZpAB+N8ULp319HfNVLqk=; h=From:To:Subject:Date:In-Reply-To:References:From; b=nW1NCzWr2QnaNMZ7iihj36Lp7HpFLqyWv0Q4y11/QzcxbesSKzwuk+b04U1aSo3Lh faAeCScS/Di5drY4jSgF73dz0sKxHwCju+C8NqzFmWGhdHABY8BLwtV6W8Y2zkDKCe n2A5lRsrn7ttYB8KTN4mEiEOb8SUWe0fO+3WnIGE= From: "cvs-commit at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug testsuite/109776] [14 Regression] pr81192 fails on some targets after recent propagator changes Date: Mon, 08 May 2023 18:04:48 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: testsuite X-Bugzilla-Version: 14.0 X-Bugzilla-Keywords: testsuite-fail 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: pinskia at gcc dot gnu.org X-Bugzilla-Target-Milestone: 14.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=3D109776 --- Comment #5 from CVS Commits --- The trunk branch has been updated by Andrew Pinski : https://gcc.gnu.org/g:5d85b5d649fff675ff00adcc99371bccf4ef5944 commit r14-587-g5d85b5d649fff675ff00adcc99371bccf4ef5944 Author: Andrew Pinski Date: Mon May 8 10:58:06 2023 -0700 Fix pr81192.c for int16 targets I had missed when converting this testcase to Gimple that there was a define for int/unsigned type specifically to get an INT32 type. This means when using a literal integer constant you need to use the `_Literal (type)` to form the types correctly on the constants. This fixes the issue and has been both tested on xstormy16-elf and x86_64-linux-gnu. Committed as obvious. gcc/testsuite/ChangeLog: PR testsuite/109776 * gcc.dg/pr81192.c: Fix integer constants for int16 targets.=