From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2153) id 69D773858435; Tue, 25 Oct 2022 08:46:10 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 69D773858435 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1666687577; bh=lk1SoxUcw8HRsiwWMp0CVhoX/s1iMwCR1YtwzemupDk=; h=From:To:Subject:Date:From; b=usgVLBxWbTlAquLDw3fEtRPWHdYkeRtVvOT4wEguEdwwIZTgRmmGu25TX3SDSvVs8 jYrCbROHdTfZpz6ZWT+vQWUCAoxzKV4olzKvKjwyKRuVavJqcrwnoL7wAVPvwTmXrJ uxJzrnzl8TtOo4uQeLsvBJZlelPsboUoPha1zNRw= MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: Jakub Jelinek To: gcc-cvs@gcc.gnu.org Subject: [gcc r13-3482] gimplify: Fix comment typos X-Act-Checkin: gcc X-Git-Author: Jakub Jelinek X-Git-Refname: refs/heads/master X-Git-Oldrev: 44e18da4d9c5faf189fe876986927be12ae4e4c4 X-Git-Newrev: 619e4ca985b31555f8489b6547be0ae45821b0ed Message-Id: <20221025084617.69D773858435@sourceware.org> Date: Tue, 25 Oct 2022 08:46:10 +0000 (GMT) List-Id: https://gcc.gnu.org/g:619e4ca985b31555f8489b6547be0ae45821b0ed commit r13-3482-g619e4ca985b31555f8489b6547be0ae45821b0ed Author: Jakub Jelinek Date: Tue Oct 25 10:45:29 2022 +0200 gimplify: Fix comment typos While looking at gimple_boolify for PR107368, I've noticed 2 comment typos. 2022-10-25 Jakub Jelinek * gimplify.cc (gimple_boolify): Fix comment typos, prduce -> produce and There -> These. Diff: --- gcc/gimplify.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/gimplify.cc b/gcc/gimplify.cc index d236ef948bc..f06ce3cc77a 100644 --- a/gcc/gimplify.cc +++ b/gcc/gimplify.cc @@ -4270,7 +4270,7 @@ gimple_boolify (tree expr) default: if (COMPARISON_CLASS_P (expr)) { - /* There expressions always prduce boolean results. */ + /* These expressions always produce boolean results. */ if (TREE_CODE (type) != BOOLEAN_TYPE) TREE_TYPE (expr) = boolean_type_node; return expr;