From patchwork Tue Jun 24 23:04:56 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adam Butcher X-Patchwork-Id: 363762 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id BC6CE1400B9 for ; Wed, 25 Jun 2014 09:05:10 +1000 (EST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender :mime-version:content-type:content-transfer-encoding:date:from :to:cc:subject:in-reply-to:references:message-id; q=dns; s= default; b=LzwiriP552bX3zbHA+mWGojMzORmnkW88i8r5wRB9ywDmOxjjUFPU PvG6Z2tEgjD8QP8xMrzKJcoCETONIzxfVqmTl3xy6H8IoYT3l84NNoAmrF4eIEwj khrOfW5n3UdrDIaWJy+9w8KxnrH+pIBLeoenaQSWKpeAFS017ps8S8= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender :mime-version:content-type:content-transfer-encoding:date:from :to:cc:subject:in-reply-to:references:message-id; s=default; bh= 6oXw/DxetoAFdfBu/Neyxh1Szsc=; b=xmQgXySnmWMkuj6WlQRb1SH/iJdT++ls ybaIpETpTTIbiTK3vuwGCQlR8ZN8KmovMHw1O675F5h3iF+KZRCD9pUgD1GPFEgp dq2rC4LIdRmjxDKHUMqhFpvPEYQUG1G46P1eOis9pPNiTsTk52Yk/3ImLTNKCFik esCrWFdWM9c= Received: (qmail 21359 invoked by alias); 24 Jun 2014 23:05:04 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org Received: (qmail 21344 invoked by uid 89); 24 Jun 2014 23:05:04 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.4 required=5.0 tests=AWL, BAYES_00, KAM_COUK, RCVD_IN_DNSWL_LOW autolearn=no version=3.3.2 X-HELO: avasout04.plus.net Received: from avasout04.plus.net (HELO avasout04.plus.net) (212.159.14.19) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 24 Jun 2014 23:05:02 +0000 Received: from webmail.plus.net ([84.93.237.98]) by avasout04 with smtp id JP4w1o007283uBY01P4xMf; Wed, 25 Jun 2014 00:05:00 +0100 X-CM-Score: 0.00 X-CNFS-Analysis: v=2.1 cv=OZcWD3jY c=1 sm=1 tr=0 a=BJaFPv9AyABFDM2hXLRoEA==:117 a=rJgRRbfb+UpHm5KwX9t5uQ==:17 a=0Bzu9jTXAAAA:8 a=dYCPD3cKDi0A:10 a=5LfTt-Tm1vgA:10 a=EDeDkkTReK4A:10 a=IkcTkHD0fZMA:10 a=ZBkl__CYAAAA:8 a=mrHjP8x4AAAA:8 a=7vtFykjVAAAA:8 a=Gquze4MZZQnW4JAKSYsA:9 a=QEXdDO2ut3YA:10 X-AUTH: jessaminenet+adam:2501 Received: from munkyhouse.force9.co.uk ([84.92.244.81]) by webmail.plus.net with HTTP (HTTP/1.1 POST); Wed, 25 Jun 2014 00:04:56 +0100 MIME-Version: 1.0 Date: Wed, 25 Jun 2014 00:04:56 +0100 From: Adam Butcher To: Paolo Carlini Cc: , Jason Merrill , Alexander Adam , Jonathan Wakely Subject: Re: [PATCH] Fix PR c++/61537 In-Reply-To: <53A9FA0F.2020005@oracle.com> References: <1403566846-2565-1-git-send-email-adam@jessamine.co.uk> <53A9FA0F.2020005@oracle.com> Message-ID: <6e7aaced1d26c1cb5d72967ffd7dae39@imap.force9.net> X-Sender: adam@jessamine.co.uk User-Agent: Roundcube Webmail/0.7.4 On 2014-06-24 23:22, Paolo Carlini wrote: > On 06/24/2014 01:40 AM, Adam Butcher wrote: >> +// { dg-do compile { target c++1y } } > I don't think this is a C++1y specific issue... You're right. I'm so used to creating pr testcases in that g++.dg/cpp1y dir, I automatically added the test there without engaging my brain! >> +// { dg-options "" } > Also, likely minor detail, could you please explain why you need > this? > Don't think I do; it was a copy from the most recent test in the cpp1y dir (another bad habit). Same issue as before; need to engage brain. :) I've fixed these issues up in my tree and moved the test to g++.dg. Cheers, Adam diff --git a/gcc/testsuite/g++.dg/cpp1y/pr61537.C b/gcc/testsuite/g++.dg/pr61537.C similarity index 79% rename from gcc/testsuite/g++.dg/cpp1y/pr61537.C rename to gcc/testsuite/g++.dg/pr61537.C index 55761cd..12aaf58 100644 --- a/gcc/testsuite/g++.dg/cpp1y/pr61537.C +++ b/gcc/testsuite/g++.dg/pr61537.C @@ -1,6 +1,5 @@ // PR c++/61537 -// { dg-do compile { target c++1y } } -// { dg-options "" } +// { dg-do compile } struct A {};