From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 628503858D35; Mon, 8 May 2023 17:39:56 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 628503858D35 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1683567596; bh=cgNsGqiS44rNGcF6dwq8J9FMtolgta+KiasSujJuiGo=; h=From:To:Subject:Date:In-Reply-To:References:From; b=mF/X9OutQ4oZsZwrKgEkI3+7eEa4584C0ymZttYRlo1ocYa5o0+on8pGFLL5FDEAb 5KbQl/pQgrpNqONb0pNUnNlxWX/TcktrL2RYm1ifnYhQTUT9qOdbwHlxeJEbOy30JM 0j6Ru/yDNJyWIv48cY6UzJa1/BU07BJ26xmawJoQ= From: "rguenth 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 17:39:55 +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: rguenth at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 14.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: everconfirmed cf_reconfirmed_on bug_status target_milestone 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 Richard Biener changed: What |Removed |Added ---------------------------------------------------------------------------- Ever confirmed|0 |1 Last reconfirmed| |2023-05-08 Status|UNCONFIRMED |NEW Target Milestone|--- |14.0 --- Comment #3 from Richard Biener --- The issue is xstormy has a 16bit int type and both 1 and 0 are getting assi= gned 'int'. Since you #define int you need to wrap all literals with _Literal (int) ... and of course 2147483647 won't fit (thus dg-require-effective-target int32plus?)=