From patchwork Thu Jun 28 08:15:51 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Martin_Li=C5=A1ka?= X-Patchwork-Id: 936349 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=gcc.gnu.org (client-ip=209.132.180.131; helo=sourceware.org; envelope-from=gcc-patches-return-480705-incoming=patchwork.ozlabs.org@gcc.gnu.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=suse.cz Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=gcc.gnu.org header.i=@gcc.gnu.org header.b="JkcsWiIf"; dkim-atps=neutral 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 41Gq2n71HLz9s0n for ; Fri, 29 Jun 2018 05:04:33 +1000 (AEST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:from :subject:to:cc:message-id:date:mime-version:content-type; q=dns; s=default; b=gtskZ2FVmbG3lTl2Rfh+yjQc1pB4A4udqY3H5Thr+TmF78vepo R/Fkh3lgWq11AWBPoGfGJrC0BP1cO7dMYfsLlcnTPVZWoVcbPq7y9VFzitPWMjap LKHOqRSZiiHa72+5VGuZeQuBTZ9vf1gd4Q9cDj5lhIvkEpGoJYF/uYqMM= 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:from :subject:to:cc:message-id:date:mime-version:content-type; s= default; bh=R0bUoE6zEF4Ae/AKNitEm+pvQJU=; b=JkcsWiIfqjqeQ6pUMv4a 6wNOv50u2x89yfUDMGgshwb6HFfG3Peq2+zQK++1skzM0ZA5wt5ZTElarfXOPYmN TPCps2EUJuQi7Ci8NffusCbhffcmFJCHOhxan++hkcIW2iFvyKV8lvBcoV+hQbEv fVYu0RngnbZTa5FEvHYD//E= Received: (qmail 86625 invoked by alias); 28 Jun 2018 19:03:36 -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 86536 invoked by uid 89); 28 Jun 2018 19:03:35 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-25.4 required=5.0 tests=BAYES_00, DATE_IN_PAST_06_12, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, SPF_PASS autolearn=ham version=3.3.2 spammy=brig X-HELO: mx1.suse.de Received: from mx2.suse.de (HELO mx1.suse.de) (195.135.220.15) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 28 Jun 2018 19:03:34 +0000 Received: from relay2.suse.de (unknown [195.135.220.254]) by mx1.suse.de (Postfix) with ESMTP id 55593ACBB; Thu, 28 Jun 2018 19:03:30 +0000 (UTC) From: =?utf-8?q?Martin_Li=C5=A1ka?= Subject: [PATCH][OBVIOUS] Add missing header file inclusion. To: gcc-patches@gcc.gnu.org Cc: Richard Biener Message-ID: <6229c15b-d1d3-8798-2127-bc8bcb7784f8@suse.cz> Date: Thu, 28 Jun 2018 10:15:51 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.8.0 MIME-Version: 1.0 X-IsSubscribed: yes Hi. This fixes: In file included from /space/rguenther/src/svn/trunk/gcc/brig/brigspec.c:26: /space/rguenther/src/svn/trunk/gcc/gcc.h:60:3: error: ‘option_proposer’ does not name a type option_proposer m_option_proposer; Installed as obvious. Martin gcc/brig/ChangeLog: 2018-06-28 Martin Liska * brigspec.c: Add missing header file inclusion. --- gcc/brig/brigspec.c | 1 + 1 file changed, 1 insertion(+) diff --git a/gcc/brig/brigspec.c b/gcc/brig/brigspec.c index 35e2460b1e5..2c8a3faf8ff 100644 --- a/gcc/brig/brigspec.c +++ b/gcc/brig/brigspec.c @@ -23,6 +23,7 @@ along with GCC; see the file COPYING3. If not see #include "system.h" #include "coretypes.h" #include "tm.h" +#include "opt-suggestions.h" #include "gcc.h" #include "opts.h"