From: Jakub Jelinek Date: Tue, 25 Oct 2022 08:45:29 +0000 (+0200) Subject: gimplify: Fix comment typos X-Git-Tag: basepoints/gcc-14~3725 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=619e4ca985b31555f8489b6547be0ae45821b0ed;p=thirdparty%2Fgcc.git 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 --git a/gcc/gimplify.cc b/gcc/gimplify.cc index d236ef948bca..f06ce3cc77ad 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;