From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2093) id C137C3858D39; Fri, 1 Jul 2022 09:56:22 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org C137C3858D39 MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: Kito Cheng To: gcc-cvs@gcc.gnu.org Subject: [gcc r13-1382] Revert "testsuite/102690: Only check warning for lp64 in Warray-bounds-16.C" X-Act-Checkin: gcc X-Git-Author: Kito Cheng X-Git-Refname: refs/heads/master X-Git-Oldrev: e52592073f6df3d7a3acd9f0436dcc32a8b7493d X-Git-Newrev: 9a33a3e2f7517a994410ca33d00052c6d3f86aff Message-Id: <20220701095622.C137C3858D39@sourceware.org> Date: Fri, 1 Jul 2022 09:56:22 +0000 (GMT) X-BeenThere: gcc-cvs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Jul 2022 09:56:22 -0000 https://gcc.gnu.org/g:9a33a3e2f7517a994410ca33d00052c6d3f86aff commit r13-1382-g9a33a3e2f7517a994410ca33d00052c6d3f86aff Author: Kito Cheng Date: Fri Jul 1 17:55:55 2022 +0800 Revert "testsuite/102690: Only check warning for lp64 in Warray-bounds-16.C" This reverts commit 0f6eef398045deb2a62d18b526831719c7c20c8a. Diff: --- gcc/testsuite/g++.dg/warn/Warray-bounds-16.C | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/testsuite/g++.dg/warn/Warray-bounds-16.C b/gcc/testsuite/g++.dg/warn/Warray-bounds-16.C index 45a14b19ea3..89cbadb91c7 100644 --- a/gcc/testsuite/g++.dg/warn/Warray-bounds-16.C +++ b/gcc/testsuite/g++.dg/warn/Warray-bounds-16.C @@ -19,7 +19,7 @@ struct S p = (int*) new unsigned char [sizeof (int) * m]; for (int i = 0; i < m; i++) - new (p + i) int (); /* { dg-bogus "bounds" "pr102690" { xfail lp64 } } */ + new (p + i) int (); /* { dg-bogus "bounds" "pr102690" { xfail *-*-* } } */ } };