From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1930) id BF912393A038; Thu, 8 Jul 2021 22:23:20 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org BF912393A038 MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: Martin Sebor To: gcc-cvs@gcc.gnu.org Subject: [gcc r12-2177] testsuite: Remove an xfail. X-Act-Checkin: gcc X-Git-Author: Martin Sebor X-Git-Refname: refs/heads/master X-Git-Oldrev: c232f07b931e3e4cb7cbd96e47b161f1c390f21d X-Git-Newrev: 68b938fada4c728c0b850b44125d9a173c01c8fb Message-Id: <20210708222320.BF912393A038@sourceware.org> Date: Thu, 8 Jul 2021 22:23:20 +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: Thu, 08 Jul 2021 22:23:20 -0000 https://gcc.gnu.org/g:68b938fada4c728c0b850b44125d9a173c01c8fb commit r12-2177-g68b938fada4c728c0b850b44125d9a173c01c8fb Author: Martin Sebor Date: Thu Jul 8 16:22:25 2021 -0600 testsuite: Remove an xfail. gcc/testsuite/ChangeLog: * gcc.dg/Wstringop-overflow-43.c: Remove an xfail. Diff: --- gcc/testsuite/gcc.dg/Wstringop-overflow-43.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/gcc/testsuite/gcc.dg/Wstringop-overflow-43.c b/gcc/testsuite/gcc.dg/Wstringop-overflow-43.c index 14ab925afdc..6d045c58bf6 100644 --- a/gcc/testsuite/gcc.dg/Wstringop-overflow-43.c +++ b/gcc/testsuite/gcc.dg/Wstringop-overflow-43.c @@ -167,9 +167,7 @@ void warn_memset_reversed_range (void) /* The following are represented as ordinary ranges with reversed bounds and those are handled. */ T1 (p, SAR (INT_MIN, 11), n11); // { dg-warning "writing 11 or more bytes into a region of size 0" } - /* In ILP32 the offset in the following has no range info associated - with it. */ - T1 (p, SAR (INT_MIN, 1), n11); // { dg-warning "writing 11 or more bytes into a region of size 0" "pr?????" { xfail ilp32 } } + T1 (p, SAR (INT_MIN, 1), n11); // { dg-warning "writing 11 or more bytes into a region of size 0" } T1 (p, SAR (INT_MIN, 0), n11); // { dg-warning "writing 11 or more bytes into a region of size 0" } /* Also represented as a true anti-range. */ T1 (p, SAR ( -12, -11), n11); // { dg-warning "writing 11 or more bytes into a region of size \\d+" }