From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 24150 invoked by alias); 2 Mar 2010 19:47:38 -0000 Received: (qmail 24130 invoked by uid 22791); 2 Mar 2010 19:47:35 -0000 X-SWARE-Spam-Status: No, hits=-2.6 required=5.0 tests=AWL,BAYES_00 X-Spam-Check-By: sourceware.org Received: from qmta12.westchester.pa.mail.comcast.net (HELO qmta12.westchester.pa.mail.comcast.net) (76.96.59.227) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 02 Mar 2010 19:46:18 +0000 Received: from omta12.westchester.pa.mail.comcast.net ([76.96.62.44]) by qmta12.westchester.pa.mail.comcast.net with comcast id oEFH1d0070xGWP85CKmHoN; Tue, 02 Mar 2010 19:46:17 +0000 Received: from up.mrs.kithrup.com ([76.103.135.53]) by omta12.westchester.pa.mail.comcast.net with comcast id oKmG1d00319Hiqs3YKmHmW; Tue, 02 Mar 2010 19:46:17 +0000 From: Mike Stump Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Subject: PR c++/41090 Date: Tue, 02 Mar 2010 19:47:00 -0000 Message-Id: To: gcc-patches Patches Mime-Version: 1.0 (Apple Message framework v1077) 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 X-SW-Source: 2010-03/txt/msg00116.txt.bz2 I've xfailed this on darwin for now. Eventually, it would be nice to suppo= rt this on darwin. I don't think this should change any non-darwin results= , save an additional pass. PR c++/41090 * g++.dg/ext/label13.C (C::C): xfail for darwin for now. Doing diffs in testsuite/: --- testsuite//g++.dg/ext/label13.C.~1~ 2010-02-09 02:14:30.000000000 -0800 +++ testsuite//g++.dg/ext/label13.C 2010-03-02 11:22:38.000000000 -0800 @@ -8,7 +8,7 @@ struct C C(); }; =20 -C::C() +C::C() // { dg-bogus "can never be copied" "" { xfail *-apple-darwin* } } { static void *labelref =3D &&label; goto *labelref; --------------