From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 108264 invoked by alias); 17 Dec 2015 14:22:56 -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 107412 invoked by uid 89); 17 Dec 2015 14:22:56 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.8 required=5.0 tests=BAYES_00,FREEMAIL_FROM,KAM_ASCII_DIVIDERS,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=no version=3.3.2 spammy=annotate, Requires, Hx-languages-length:907 X-HELO: mail-qg0-f46.google.com Received: from mail-qg0-f46.google.com (HELO mail-qg0-f46.google.com) (209.85.192.46) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Thu, 17 Dec 2015 14:22:55 +0000 Received: by mail-qg0-f46.google.com with SMTP id v36so7926924qgd.2 for ; Thu, 17 Dec 2015 06:22:54 -0800 (PST) X-Received: by 10.140.216.14 with SMTP id m14mr62285744qhb.90.1450362172627; Thu, 17 Dec 2015 06:22:52 -0800 (PST) Received: from ?IPv6:2601:181:c000:c497:a2a8:cdff:fe3e:b48? ([2601:181:c000:c497:a2a8:cdff:fe3e:b48]) by smtp.googlemail.com with ESMTPSA id d62sm4741234qga.41.2015.12.17.06.22.51 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 17 Dec 2015 06:22:52 -0800 (PST) To: GCC Patches From: Nathan Sidwell Subject: [ptx] annotate 2 tests Message-ID: <5672C53B.3010209@acm.org> Date: Thu, 17 Dec 2015 14:22:00 -0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.3.0 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="------------090404030801050504070207" X-SW-Source: 2015-12/txt/msg01770.txt.bz2 This is a multi-part message in MIME format. --------------090404030801050504070207 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Content-length: 65 These two tests require label values, annotated thusly. nathan --------------090404030801050504070207 Content-Type: text/x-patch; name="trunk-ptx-tests.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="trunk-ptx-tests.patch" Content-length: 829 2015-12-17 Nathan Sidwell * c-c++-common/Wunused-var-13.c: Requires label values. * gcc.dg/torture/pr46216.c: Likewise. Index: c-c++-common/Wunused-var-13.c =================================================================== --- c-c++-common/Wunused-var-13.c (revision 231757) +++ c-c++-common/Wunused-var-13.c (working copy) @@ -1,6 +1,7 @@ /* PR c/46015 */ /* { dg-options "-Wunused" } */ /* { dg-do compile } */ +/* { dg-require-effective-target label_values } */ int f1 (int i) Index: gcc.dg/torture/pr46216.c =================================================================== --- gcc.dg/torture/pr46216.c (revision 231757) +++ gcc.dg/torture/pr46216.c (working copy) @@ -1,4 +1,5 @@ /* { dg-do compile } */ +/* { dg-require-effective-target label_values } */ typedef int Embryo_Cell; int --------------090404030801050504070207--