]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
gimplify: Fix comment typos
authorJakub Jelinek <jakub@redhat.com>
Tue, 25 Oct 2022 08:45:29 +0000 (10:45 +0200)
committerJakub Jelinek <jakub@redhat.com>
Tue, 25 Oct 2022 08:45:29 +0000 (10:45 +0200)
While looking at gimple_boolify for PR107368, I've noticed 2 comment
typos.

2022-10-25  Jakub Jelinek  <jakub@redhat.com>

* gimplify.cc (gimple_boolify): Fix comment typos, prduce -> produce
and There -> These.

gcc/gimplify.cc

index d236ef948bcae15fda01c05163867a866ca6e016..f06ce3cc77ad08b68ed0d9c8af67a69892fa43b7 100644 (file)
@@ -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;