From patchwork Fri Aug 31 10:35:01 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kyrill Tkachov X-Patchwork-Id: 964367 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-484848-incoming=patchwork.ozlabs.org@gcc.gnu.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=foss.arm.com Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=gcc.gnu.org header.i=@gcc.gnu.org header.b="l8TR46Lu"; 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 421wjd5B8rz9ryn for ; Fri, 31 Aug 2018 20:35:14 +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 :message-id:date:from:mime-version:to:subject:content-type; q= dns; s=default; b=qcQWjYsAHHf6XLwLj/u8WMS2wy95m45/FV8CtZgI4Sq/rn sQtRfapxf6O6tiKEqDaogN6rVxHswxvKDjL3SSDThGVAfQiQbrH5EHJR6pGzycyi VZSAr9jFKeM5i8A7CzMrAXPtvhy9bpqmixls3dCpkX+iB3clbJUenPDAnYB34= 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=XPwuJsByW3rIcOAJoRAjo7ffQ+Q=; b=l8TR46Lu60946nyFtvFq 4j0VtKtZGbZCT1nYOyxl7j4iu5UlvM/SLTDECh+hXFPJWCXZi9SDwObu4YELU5lM c9RAtCJGHt/CmtsGR2xCz3NOUK8ud7q87bDZ1apR0iJ6g+wlKrULCt1Rgre2xX6K A+EOdL8hxBIvos83yg3g7MY= Received: (qmail 106798 invoked by alias); 31 Aug 2018 10:35:07 -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 106773 invoked by uid 89); 31 Aug 2018 10:35:06 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-25.9 required=5.0 tests=BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, KAM_LAZY_DOMAIN_SECURITY autolearn=ham version=3.3.2 spammy=bellow, tkachov, Tkachov, sk:ipa_fn_ X-HELO: foss.arm.com Received: from usa-sjc-mx-foss1.foss.arm.com (HELO foss.arm.com) (217.140.101.70) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 31 Aug 2018 10:35:05 +0000 Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.72.51.249]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id C20FCED1 for ; Fri, 31 Aug 2018 03:35:03 -0700 (PDT) Received: from [10.2.207.77] (e100706-lin.cambridge.arm.com [10.2.207.77]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 703473F721 for ; Fri, 31 Aug 2018 03:35:03 -0700 (PDT) Message-ID: <5B8919D5.9060609@foss.arm.com> Date: Fri, 31 Aug 2018 11:35:01 +0100 From: Kyrill Tkachov User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.2.0 MIME-Version: 1.0 To: "gcc-patches@gcc.gnu.org" Subject: [PATCH][ipa-inline][obvious] Fix typos in comment Hi all, I'm committing this as obvious. Thanks, Kyrill 2018-08-31 Kyrylo Tkachov * ipa-inline.c (can_inline_edge_by_limits_p): Fix typos in comment. diff --git a/gcc/ipa-inline.c b/gcc/ipa-inline.c index a84d1d9ad3e45935eff51f00b8f6b5058a691c9e..025788522fbe602e1d190a30ccea006b9ab053c5 100644 --- a/gcc/ipa-inline.c +++ b/gcc/ipa-inline.c @@ -430,9 +430,9 @@ can_inline_edge_by_limits_p (struct cgraph_edge *e, bool report, ipa_fn_summary *caller_info = ipa_fn_summaries->get (caller); ipa_fn_summary *callee_info = ipa_fn_summaries->get (callee); - /* Until GCC 4.9 we did not check the semantics alterning flags - bellow and inline across optimization boundry. - Enabling checks bellow breaks several packages by refusing + /* Until GCC 4.9 we did not check the semantics-altering flags + below and inlined across optimization boundaries. + Enabling checks below breaks several packages by refusing to inline library always_inline functions. See PR65873. Disable the check for early inlining for now until better solution is found. */