From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2152) id 5BF4B385B515; Fri, 10 Feb 2023 00:41:59 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 5BF4B385B515 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1675989719; bh=e3Fa40uQCPw8t9AtSJGxKvpLMe5RGNGUTkyaEb3qifI=; h=From:To:Subject:Date:From; b=awLqmw8mh7/jt09P7MpeK4gwz5ESkfh8pravziL6f/SAB5HZtLTMhcNP1P+Hp4RWO 7HcCnqirspSW44tmdJ4HLYRWtg2yVj1NhNCNjSRIThLMk62Eu06ZZn189JxixdPYzM 6qV3VRFJvz3QcoN4ZzATlyxekUz9Ln+cn9OJMMe8= MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: Hans-Peter Nilsson To: gcc-cvs@gcc.gnu.org Subject: [gcc r13-5766] testsuite: XFAIL g++.dg/pr71488.C and warn/Warray-bounds-16.C, PR107561 X-Act-Checkin: gcc X-Git-Author: Hans-Peter Nilsson X-Git-Refname: refs/heads/master X-Git-Oldrev: c47f76c16bf7b3108e762d4b8b16fbb0c9c75187 X-Git-Newrev: 41015797ad14bc9030a87d102e4ab1ad891345f6 Message-Id: <20230210004159.5BF4B385B515@sourceware.org> Date: Fri, 10 Feb 2023 00:41:59 +0000 (GMT) List-Id: https://gcc.gnu.org/g:41015797ad14bc9030a87d102e4ab1ad891345f6 commit r13-5766-g41015797ad14bc9030a87d102e4ab1ad891345f6 Author: Hans-Peter Nilsson Date: Thu Feb 2 20:35:52 2023 +0100 testsuite: XFAIL g++.dg/pr71488.C and warn/Warray-bounds-16.C, PR107561 These appear as regressions from a baseline before r13-3761-ga239a63f868e29. See the PR trail. Note that the warning for g++.dg/pr71488.C is for a *header* file, thus we can't match the line number (sanely). gcc/testsuite: PR tree-optimization/107561 * g++.dg/warn/Warray-bounds-16.C: XFAIL bogus "overflows destination" warning. * g++.dg/pr71488.C: Ditto, but just for ilp32 targets. Diff: --- gcc/testsuite/g++.dg/pr71488.C | 1 + gcc/testsuite/g++.dg/warn/Warray-bounds-16.C | 1 + 2 files changed, 2 insertions(+) diff --git a/gcc/testsuite/g++.dg/pr71488.C b/gcc/testsuite/g++.dg/pr71488.C index ffe30f1afeb..a89e6465a94 100644 --- a/gcc/testsuite/g++.dg/pr71488.C +++ b/gcc/testsuite/g++.dg/pr71488.C @@ -3,6 +3,7 @@ // { dg-options "-O3 -std=c++11" } // { dg-additional-options "-msse4" { target sse4_runtime } } // { dg-require-effective-target c++11 } +// { dg-bogus "size 0 overflows" "pr107561" { xfail *-*-* } 0 } #include diff --git a/gcc/testsuite/g++.dg/warn/Warray-bounds-16.C b/gcc/testsuite/g++.dg/warn/Warray-bounds-16.C index 89cbadb91c7..49d3437fa1b 100644 --- a/gcc/testsuite/g++.dg/warn/Warray-bounds-16.C +++ b/gcc/testsuite/g++.dg/warn/Warray-bounds-16.C @@ -20,6 +20,7 @@ struct S for (int i = 0; i < m; i++) new (p + i) int (); /* { dg-bogus "bounds" "pr102690" { xfail *-*-* } } */ + // { dg-bogus "size 0 overflows" "pr107561" { xfail ilp32 } .-1 } } };