From patchwork Sat Feb 9 09:45:37 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Uros Bizjak X-Patchwork-Id: 219381 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]) by ozlabs.org (Postfix) with SMTP id 793C52C0082 for ; Sat, 9 Feb 2013 20:45:48 +1100 (EST) Comment: DKIM? See http://www.dkim.org DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=gcc.gnu.org; s=default; x=1361007949; h=Comment: DomainKey-Signature:Received:Received:Received:Received: MIME-Version:Received:Date:Message-ID:Subject:From:To: Content-Type:Mailing-List:Precedence:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:Sender:Delivered-To; bh=LFuCxV6 eutGEUoP1qFaiao1XsLY=; b=tRoVQl587+tyGmLIeIZKWA847qaV9DovOpdWjMM LoYjcmN8mCi5TlAUtcxNZMdtHWqf4Nyd4u8NTOXlLSNVc+wMA4LiTe9QA+aYiwqP N1Rul4YUUdYH0jHEHcPevWWAeTOLC3TZJk5BG9bydBiJZ7C7LdBGSuz9X7/m1YHk Du2Q= Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=default; d=gcc.gnu.org; h=Received:Received:X-SWARE-Spam-Status:X-Spam-Check-By:Received:Received:MIME-Version:X-Received:Received:Date:Message-ID:Subject:From:To:Content-Type:Mailing-List:Precedence:List-Id:List-Unsubscribe:List-Archive:List-Post:List-Help:Sender:Delivered-To; b=v8fHMJdWM61QlhnlOc+rMJVK+YR6j7nxoNA7knOHcbBCgK+ToZd5cNZWiXMypk gVKxyM4WAzHkwz+MQKi0il5obg/i5P/Td3xH9VObq9OPm3XQcDHBkj+01d7vsoEN JH8mfrF6wh2K4dQLjDhtAkaAel6Y5EWhIJFdTy5MwthuY=; Received: (qmail 3623 invoked by alias); 9 Feb 2013 09:45:44 -0000 Received: (qmail 3602 invoked by uid 22791); 9 Feb 2013 09:45:43 -0000 X-SWARE-Spam-Status: No, hits=-4.3 required=5.0 tests=AWL, BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, FREEMAIL_FROM, KHOP_RCVD_TRUST, RCVD_IN_DNSWL_LOW, RCVD_IN_HOSTKARMA_YE, TW_ZJ X-Spam-Check-By: sourceware.org Received: from mail-oa0-f50.google.com (HELO mail-oa0-f50.google.com) (209.85.219.50) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Sat, 09 Feb 2013 09:45:38 +0000 Received: by mail-oa0-f50.google.com with SMTP id l20so4902152oag.9 for ; Sat, 09 Feb 2013 01:45:37 -0800 (PST) MIME-Version: 1.0 X-Received: by 10.182.156.20 with SMTP id wa20mr3154576obb.59.1360403137678; Sat, 09 Feb 2013 01:45:37 -0800 (PST) Received: by 10.182.49.68 with HTTP; Sat, 9 Feb 2013 01:45:37 -0800 (PST) Date: Sat, 9 Feb 2013 10:45:37 +0100 Message-ID: Subject: [PATCH, 4.7]: Include output.h in lto.c From: Uros Bizjak To: gcc-patches@gcc.gnu.org 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 Hello! We need to #include "output.h" due to the use of %wx in a diagnostic string. For 4.8 Steven moved "typedef HOST_WIDE_INT __gcc_host_wide_int__" to hwint.h, but for 4.7 branch we need output.h for the typedef. 2013-02-09 Uros Bizjak * lto.c: Include output.h. Bootstrapped on x86_64-pc-linux-gnu, committed to 4.7 branch as obvious. Uros. Index: lto.c =================================================================== --- lto.c (revision 195911) +++ lto.c (working copy) @@ -25,6 +25,7 @@ #include "toplev.h" #include "tree.h" #include "tree-flow.h" +#include "output.h" #include "diagnostic-core.h" #include "tm.h" #include "cgraph.h"