From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 9349C3850423; Wed, 12 Aug 2020 12:26:22 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 9349C3850423 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1597235182; bh=lmqKszzKWhv56JRu9+tcfuDaHV0WIxIX59ND/ymEkxo=; h=From:To:Subject:Date:In-Reply-To:References:From; b=dIuxFUyTU1AvqUG/GF5+CI0aQBhAVa5VgI7sxtdKK0Qa03R5UL+kc3Bgq5wWGF3cq TwxpNWV883ta34Wh65AW3JeZY25nLQYXSrAVGwXtyLoYD4Wnx0n0kMmvnN0YXHHAIP buT1R/i+xbIgguyMMC9/22Oivu/nkSdRBY0cCEck= From: "cvs-commit at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug testsuite/96519] [11 regression] new test case gcc.dg/ia64-sync-5.c fails Date: Wed, 12 Aug 2020 12:26:22 +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: 11.0 X-Bugzilla-Keywords: 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: --- 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, 12 Aug 2020 12:26:22 -0000 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D96519 --- Comment #2 from CVS Commits --- The master branch has been updated by Kwok Yeung : https://gcc.gnu.org/g:36507a2c9cbac673553b043aa1817e674836c232 commit r11-2670-g36507a2c9cbac673553b043aa1817e674836c232 Author: Kwok Cheung Yeung Date: Wed Aug 12 05:19:11 2020 -0700 Fix gcc.dg/ia64-sync-5.c for architectures with unsigned char as default (PR 96519) If char is unsigned, then comparisons of the char array elements against negative integers in the test will fail as values in the array will alw= ays be positive, and will remain so when promoted to signed int. 2020-08-12 Kwok Cheung Yeung PR testsuite/96519 gcc/testsuite/ * gcc.dg/ia64-sync-5.c (AC, init_qi, test_qi): Change element t= ype to signed char.=