diff options
author | Jakub Jelinek <jakub@redhat.com> | 2022-10-25 10:45:29 +0200 |
---|---|---|
committer | Jakub Jelinek <jakub@redhat.com> | 2022-10-25 10:45:29 +0200 |
commit | 619e4ca985b31555f8489b6547be0ae45821b0ed (patch) | |
tree | 54ec8d22363977ab23bb8f981eb9483c0a546c48 /gcc | |
parent | 44e18da4d9c5faf189fe876986927be12ae4e4c4 (diff) | |
download | gcc-619e4ca985b31555f8489b6547be0ae45821b0ed.zip gcc-619e4ca985b31555f8489b6547be0ae45821b0ed.tar.gz gcc-619e4ca985b31555f8489b6547be0ae45821b0ed.tar.bz2 |
gimplify: Fix comment typos
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.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/gimplify.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/gimplify.cc b/gcc/gimplify.cc index d236ef9..f06ce3c 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; |