From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 110730 invoked by alias); 5 Oct 2016 16:22:39 -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 110713 invoked by uid 89); 5 Oct 2016 16:22:38 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-4.5 required=5.0 tests=BAYES_00,RP_MATCHES_RCVD,SPF_HELO_PASS autolearn=ham version=3.3.2 spammy=cc0, Feel X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 05 Oct 2016 16:22:37 +0000 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 2D8831384E; Wed, 5 Oct 2016 16:22:36 +0000 (UTC) Received: from localhost.localdomain (ovpn-116-162.phx2.redhat.com [10.3.116.162]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id u95GMYpW002152; Wed, 5 Oct 2016 12:22:34 -0400 Subject: Re: [C++ PATCH] Delete GCJ - C++ part To: Jakub Jelinek , Andreas Schwab References: <78f841e7-808b-58d0-7913-3ec0d19630a0@redhat.com> <84c4f4e2-3048-f5f8-de72-b2f704aa1389@redhat.com> <20160930102746.GB3223@redhat.com> <87d1jiq3te.fsf@linux-m68k.org> <20161002195850.GV7282@tucnak.redhat.com> <20161005090748.GM7282@tucnak.redhat.com> Cc: Jason Merrill , Andrew Haley , Marek Polacek , gcc-patches@gcc.gnu.org From: Jeff Law Message-ID: Date: Wed, 05 Oct 2016 16:22:00 -0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.3.0 MIME-Version: 1.0 In-Reply-To: <20161005090748.GM7282@tucnak.redhat.com> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit X-IsSubscribed: yes X-SW-Source: 2016-10/txt/msg00288.txt.bz2 On 10/05/2016 03:07 AM, Jakub Jelinek wrote: > On Wed, Oct 05, 2016 at 11:04:05AM +0200, Andreas Schwab wrote: >> FAIL: g++.dg/pr49847-2.C -std=gnu++11 (test for excess errors) >> Excess errors: >> /daten/aranym/gcc/gcc-20161005/gcc/testsuite/g++.dg/pr49847-2.C:5:13: error: '__java_int' does not name a type >> /daten/aranym/gcc/gcc-20161005/gcc/testsuite/g++.dg/pr49847-2.C:6:13: error: '__java_float' does not name a type; did you mean '__cpp_hex_float'? >> /daten/aranym/gcc/gcc-20161005/gcc/testsuite/g++.dg/pr49847-2.C:18:12: error: language string '"Java"' not recognized >> /daten/aranym/gcc/gcc-20161005/gcc/testsuite/g++.dg/pr49847-2.C:25:5: error: 'jint' does not name a type; did you mean 'int'? >> /daten/aranym/gcc/gcc-20161005/gcc/testsuite/g++.dg/pr49847-2.C:26:5: error: 'jfloat' does not name a type; did you mean 'float'? >> /daten/aranym/gcc/gcc-20161005/gcc/testsuite/g++.dg/pr49847-2.C:41:6: error: 'jfloat' was not declared in this scope >> /daten/aranym/gcc/gcc-20161005/gcc/testsuite/g++.dg/pr49847-2.C:42:13: error: expected ';' before 'value1' >> /daten/aranym/gcc/gcc-20161005/gcc/testsuite/g++.dg/pr49847-2.C:43:10: error: 'value1' was not declared in this scope >> /daten/aranym/gcc/gcc-20161005/gcc/testsuite/g++.dg/pr49847-2.C:43:19: error: 'value2' was not declared in this scope >> /daten/aranym/gcc/gcc-20161005/gcc/testsuite/g++.dg/pr49847-2.C:43:41: error: 'union _Jv_word' has no member named 'i' > > Feel free to remove it. I have no access to m68k. No objections from me either. It was a test for a very obscure problem with cc0 targets and the setter/user getting separated. Given we just want to verify compilation without hitting an ICE, we could probably create suitable types and save the test, but I doubt it's terribly important. jeff