From patchwork Mon Jan 27 21:00:53 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jeff Law X-Patchwork-Id: 314500 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 1D57A2C0079 for ; Tue, 28 Jan 2014 08:01:02 +1100 (EST) 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=tOtmM/lO5itQJGPMku0PSzKQ+8ZMTVfyWUl7qAgkAS8yvU lMiopLPS4UZsnAVXH360+cJO7QERIZArilDydEvxIAZZ2RLxAoOHhse7RltXhVMy TB3wN4c7Mccss+pHRNZ5UGbxLXqkFRU4tLoWVRThlJTqJT5wm4A7syagoZ6nc= 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=auDN99TwIxn2fUYt9DnCjNz7ZJg=; b=j1OSChhGEjN39WruuWoI oq77VFtjuPD+74hjzoopMuOKdh1cSVuTEGKO2/Ef9y9OyZ4ZJOPBzLX6kwObb29d ZltYtiJS8ql3YIgAfxG51YjPK+wKMZ7z19rOwFKdEMYzsWRjp+zQUxFBCrF2rjdU X4tNjSBgc0j1aCfaLMGgvOA= Received: (qmail 5673 invoked by alias); 27 Jan 2014 21:00:56 -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 5662 invoked by uid 89); 27 Jan 2014 21:00:55 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.3 required=5.0 tests=AWL, BAYES_00, RP_MATCHES_RCVD, SPF_HELO_PASS, SPF_PASS autolearn=ham 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 ESMTP; Mon, 27 Jan 2014 21:00:55 +0000 Received: from int-mx02.intmail.prod.int.phx2.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id s0RL0ro4026261 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Mon, 27 Jan 2014 16:00:53 -0500 Received: from stumpy.slc.redhat.com ([10.3.113.19]) by int-mx02.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id s0RL0rWe016404 for ; Mon, 27 Jan 2014 16:00:53 -0500 Message-ID: <52E6C905.7080303@redhat.com> Date: Mon, 27 Jan 2014 14:00:53 -0700 From: Jeff Law User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.2.0 MIME-Version: 1.0 To: gcc-patches Subject: [PATCH] Fix comment typo X-IsSubscribed: yes Just something I noticed while looking at one of our P1 regressions. Installed as obvious. Jeff diff --git a/gcc/ipa-inline.c b/gcc/ipa-inline.c index 12ee84c..5f47e0b 100644 --- a/gcc/ipa-inline.c +++ b/gcc/ipa-inline.c @@ -1597,7 +1597,7 @@ inline_small_functions (void) max_size = compute_max_insns (overall_size); min_size = overall_size; - /* Populate the heeap with all edges we might inline. */ + /* Populate the heap with all edges we might inline. */ FOR_EACH_DEFINED_FUNCTION (node) {