From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 829DC3858436; Wed, 6 Mar 2024 15:24:21 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 829DC3858436 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1709738661; bh=UNRKoHHSYTlSlTOEaZQW9Z/7taiDXNH5Jw3kQF4C9e8=; h=From:To:Subject:Date:In-Reply-To:References:From; b=OuIEhR0QVgqY9vAAKNm50KkYaQdoLcNXtpc4P7dRzt4L+XZlYLW/rJeGlnPyJBOGl 9BbTpoXfznfXsnI1q453p16qt4CJWQw+k6p8bmvAmfb+K59UzHgoaCwMGrsfnlQDJ/ 47/DO3VOiEvcgIzNsES3/pG1EkliPngXDRLuPJ48= From: "dave.anglin at bell dot net" To: gcc-bugs@gcc.gnu.org Subject: [Bug testsuite/113428] [14 regression] gcc.dg/gomp/bad-array-section-c-3.c fails after r14-7158-gb5476e4c881b0d Date: Wed, 06 Mar 2024 15:24:20 +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: openmp, testsuite-fail X-Bugzilla-Severity: normal X-Bugzilla-Who: dave.anglin at bell dot net 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: 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=3D113428 --- Comment #5 from dave.anglin at bell dot net --- On 2024-03-06 5:06 a.m., rearnsha at gcc dot gnu.org wrote: > I'm guessing it's this that's causing the problem because int and int* ar= e the > same size on 32-bit targets. So would changing the test to: > > - int arr[20]; > + char arr[20]; > > be enough? AFAIK we don't have any targets with 8-bit pointers. Test passes with the attached change on hppa-unknown-linux-gnu.=