From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 112523 invoked by alias); 4 Aug 2015 16:10:37 -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 112319 invoked by uid 89); 4 Aug 2015 16:10:36 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.8 required=5.0 tests=AWL,BAYES_50,RP_MATCHES_RCVD,SPF_PASS autolearn=ham version=3.3.2 X-HELO: userp1040.oracle.com Received: from userp1040.oracle.com (HELO userp1040.oracle.com) (156.151.31.81) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Tue, 04 Aug 2015 16:10:35 +0000 Received: from aserv0022.oracle.com (aserv0022.oracle.com [141.146.126.234]) by userp1040.oracle.com (Sentrion-MTA-4.3.2/Sentrion-MTA-4.3.2) with ESMTP id t74GAWo8025383 (version=TLSv1 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Tue, 4 Aug 2015 16:10:33 GMT Received: from userv0122.oracle.com (userv0122.oracle.com [156.151.31.75]) by aserv0022.oracle.com (8.13.8/8.13.8) with ESMTP id t74GAW5T010904 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=FAIL); Tue, 4 Aug 2015 16:10:32 GMT Received: from abhmp0002.oracle.com (abhmp0002.oracle.com [141.146.116.8]) by userv0122.oracle.com (8.13.8/8.13.8) with ESMTP id t74GAWWi018031; Tue, 4 Aug 2015 16:10:32 GMT Received: from [192.168.1.4] (/87.21.238.133) by default (Oracle Beehive Gateway v4.0) with ESMTP ; Tue, 04 Aug 2015 09:10:31 -0700 Subject: Re: [C++17] Implement N3928 - Extending static_assert To: Ed Smith-Rowland <3dw4rd@verizon.net>, Jason Merrill , gcc-patches References: <55453092.5050501@verizon.net> <555CA818.7020301@redhat.com> <557EF7AF.4080009@redhat.com> <557F5C53.2090009@verizon.net> <558182C8.4070204@redhat.com> <5581B436.6060402@verizon.net> <5581C912.6050704@redhat.com> <558ACD9D.2010507@verizon.net> From: Paolo Carlini Message-ID: <55C0E3F5.6060101@oracle.com> Date: Tue, 04 Aug 2015 16:10:00 -0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.1.0 MIME-Version: 1.0 In-Reply-To: <558ACD9D.2010507@verizon.net> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit X-IsSubscribed: yes X-SW-Source: 2015-08/txt/msg00202.txt.bz2 Hi, On 06/24/2015 05:32 PM, Ed Smith-Rowland wrote: > Index: testsuite/g++.dg/cpp1z/static_assert-nomsg.C > =================================================================== > --- testsuite/g++.dg/cpp1z/static_assert-nomsg.C (revision 0) > +++ testsuite/g++.dg/cpp1z/static_assert-nomsg.C (working copy) > @@ -0,0 +1,27 @@ > +// { dg-do compile { target c++1z } } As far as I can see, we can't really use this syntax in the cpp1z directory: the testcase is effectively skipped. Indeed, we don't use it anywhere else. I'm going to replace it with the straightforward: // { dg-options "-std=c++1z" } Thanks, Paolo.