From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 24649 invoked by alias); 6 Aug 2017 08:47:46 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Received: (qmail 14761 invoked by uid 89); 6 Aug 2017 08:47:41 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-24.6 required=5.0 tests=AWL,BAYES_00,GIT_PATCH_0,GIT_PATCH_1,GIT_PATCH_2,GIT_PATCH_3,RCVD_IN_DNSWL_NONE,SPF_PASS,URIBL_RED autolearn=ham version=3.3.2 spammy= X-HELO: relay1.mentorg.com Received: from relay1.mentorg.com (HELO relay1.mentorg.com) (192.94.38.131) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 06 Aug 2017 08:47:40 +0000 Received: from nat-ies.mentorg.com ([192.94.31.2] helo=SVR-IES-MBX-04.mgc.mentorg.com) by relay1.mentorg.com with esmtp id 1deHDm-0004bc-Sg from Tom_deVries@mentor.com for gcc-patches@gcc.gnu.org; Sun, 06 Aug 2017 01:47:38 -0700 Received: from [127.0.0.1] (137.202.0.87) by SVR-IES-MBX-04.mgc.mentorg.com (139.181.222.4) with Microsoft SMTP Server (TLS) id 15.0.1263.5; Sun, 6 Aug 2017 09:47:34 +0100 To: GCC Patches From: Tom de Vries Subject: [testsuite, nvptx, committed] Require nonlocal_goto for gcc.dg/pr78582.c Message-ID: Date: Sun, 06 Aug 2017 08:47:00 -0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.2.1 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="------------75C0665473698F180A45B844" X-ClientProxiedBy: svr-ies-mbx-01.mgc.mentorg.com (139.181.222.1) To SVR-IES-MBX-04.mgc.mentorg.com (139.181.222.4) X-SW-Source: 2017-08/txt/msg00454.txt.bz2 --------------75C0665473698F180A45B844 Content-Type: text/plain; charset="utf-8"; format=flowed Content-Transfer-Encoding: 7bit Content-length: 116 Hi, this patch requires effective target nonlocal_goto for test-case gcc.dg/pr78582.c. Committed. Thanks, - Tom --------------75C0665473698F180A45B844 Content-Type: text/x-patch; name="0002-Require-nonlocal_goto-for-gcc.dg-pr78582.c.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="0002-Require-nonlocal_goto-for-gcc.dg-pr78582.c.patch" Content-length: 598 Require nonlocal_goto for gcc.dg/pr78582.c 2017-08-06 Tom de Vries * gcc.dg/pr78582.c: Require effective target nonlocal_goto. --- gcc/testsuite/gcc.dg/pr78582.c | 1 + 1 file changed, 1 insertion(+) diff --git a/gcc/testsuite/gcc.dg/pr78582.c b/gcc/testsuite/gcc.dg/pr78582.c index 51e3a1f..6d125cf 100644 --- a/gcc/testsuite/gcc.dg/pr78582.c +++ b/gcc/testsuite/gcc.dg/pr78582.c @@ -1,6 +1,7 @@ /* PR target/78582. */ /* { dg-options "-fprofile-generate" } */ /* { dg-do compile } */ +/* { dg-require-effective-target nonlocal_goto } */ #include --------------75C0665473698F180A45B844--