diff mbox series

[committed] gimplify: Fix comment typos

Message ID Y1ejAIVkd8y4CNJW@tucnak
State New
Headers show
Series [committed] gimplify: Fix comment typos | expand

Commit Message

Jakub Jelinek Oct. 25, 2022, 8:49 a.m. UTC
Hi!

While looking at gimple_boolify for PR107368, I've noticed 2 comment
typos.

Bootstrapped/regtested on x86_64-linux and i686-linux, committed to trunk.

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

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


	Jakub
diff mbox series

Patch

--- gcc/gimplify.cc.jj	2022-10-24 11:01:54.121339779 +0200
+++ gcc/gimplify.cc	2022-10-24 11:21:44.215124376 +0200
@@ -4272,7 +4272,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;