From patchwork Fri Jun 5 19:28:07 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Aldy Hernandez X-Patchwork-Id: 481527 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 42211140134 for ; Sat, 6 Jun 2015 05:28:19 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=gcc.gnu.org header.i=@gcc.gnu.org header.b=FFoZNTmL; dkim-atps=neutral DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender :message-id:date:from:mime-version:to:subject:content-type; q= dns; s=default; b=JR3rVXGmrQCrp0Na3Tc1iTel8Dp6M4YkANZqyArh5TDcl4 ye2n+lAl7gXwq1S2wkU5MFp6AsZuApihNZDHu0K7hArbbiBIs8xc9OtTlWXCikbp A/w/g8iYlFiwfT/c/c/x4fIGIZCtXZfU+alo2LyXE8kxd2EkegDwoeU/ptM20= 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 :message-id:date:from:mime-version:to:subject:content-type; s= default; bh=dZpFBmqpEjGzVS1RNWRY0ecQFKM=; b=FFoZNTmLloZ3oA6HWtTu 1hLpmr/1fXnlFbR+x7rwJsoSI4iIZYBr4Q6DBdY/e5eYDm2NrZ5/mNR22qOnf3HD Hia2mKNMr5kanKhgCMXfe7qypEb8whaC209uDyqyhHrOWBoVGThxoax9y5hfkvKL 2lNuntUoa5R83syn1LKwheE= Received: (qmail 115416 invoked by alias); 5 Jun 2015 19:28:11 -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 115402 invoked by uid 89); 5 Jun 2015 19:28:10 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-4.1 required=5.0 tests=AWL, BAYES_50, KAM_LAZY_DOMAIN_SECURITY, SPF_HELO_PASS, T_RP_MATCHES_RCVD autolearn=no version=3.3.2 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 (AES256-GCM-SHA384 encrypted) ESMTPS; Fri, 05 Jun 2015 19:28:10 +0000 Received: from int-mx13.intmail.prod.int.phx2.redhat.com (int-mx13.intmail.prod.int.phx2.redhat.com [10.5.11.26]) by mx1.redhat.com (Postfix) with ESMTPS id F14572DD2EE for ; Fri, 5 Jun 2015 19:28:08 +0000 (UTC) Received: from reynosa.quesejoda.com (vpn-57-97.rdu2.redhat.com [10.10.57.97]) by int-mx13.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id t55JS8TK028237 for ; Fri, 5 Jun 2015 15:28:08 -0400 Message-ID: <5571F847.8060900@redhat.com> Date: Fri, 05 Jun 2015 15:28:07 -0400 From: Aldy Hernandez User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.6.0 MIME-Version: 1.0 To: gcc-patches Subject: [java] include missing file after debug-early merge Must've crossed paths with Andrew Macleod in his header refactoring or something. I added a call to global_decl_processing() which is now missing the relevant header file. I'm testing this and committing as obvious, once I retest mainline once again. Aldy commit d681ceeaef7dcc598a469d86c60e370c21a4f4ed Author: Aldy Hernandez Date: Fri Jun 5 15:24:49 2015 -0400 * jcf-parse.c: Include toplev.h. diff --git a/gcc/java/jcf-parse.c b/gcc/java/jcf-parse.c index ba216a1..721696b 100644 --- a/gcc/java/jcf-parse.c +++ b/gcc/java/jcf-parse.c @@ -55,6 +55,7 @@ The Free Software Foundation is independent of Sun Microsystems, Inc. */ #include "cgraph.h" #include "bitmap.h" #include "target.h" +#include "toplev.h" #ifdef HAVE_LOCALE_H #include