https://gcc.gnu.org/g:bb7f98d2695af789cffdad5a19f04c2b48d7f240

commit r15-6159-gbb7f98d2695af789cffdad5a19f04c2b48d7f240
Author: Jakub Jelinek <ja...@redhat.com>
Date:   Thu Dec 12 11:26:14 2024 +0100

    crc: Comment spelling fix
    
    "replacement is succeeded" doesn't look correct, this patch drops the
    is.
    
    2024-12-12  Jakub Jelinek  <ja...@redhat.com>
    
            * gimple-crc-optimization.cc (crc_optimization::optimize_crc_loop):
            Comment spelling fix, is succeeded -> succeeded.

Diff:
---
 gcc/gimple-crc-optimization.cc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gcc/gimple-crc-optimization.cc b/gcc/gimple-crc-optimization.cc
index 59fe5f656149..27c0dfb3ca7b 100644
--- a/gcc/gimple-crc-optimization.cc
+++ b/gcc/gimple-crc-optimization.cc
@@ -227,7 +227,7 @@ class crc_optimization {
 
   /* Attempts to optimize a CRC calculation loop by replacing it with a call to
      an internal function (IFN_CRC or IFN_CRC_REV).
-     Returns true if replacement is succeeded, otherwise false.  */
+     Returns true if replacement succeeded, otherwise false.  */
   bool optimize_crc_loop (gphi *output_crc);
 
  public:
@@ -1214,7 +1214,7 @@ crc_optimization::get_output_phi ()
 
 /* Attempts to optimize a CRC calculation loop by replacing it with a call to
    an internal function (IFN_CRC or IFN_CRC_REV).
-   Returns true if replacement is succeeded, otherwise false.  */
+   Returns true if replacement succeeded, otherwise false.  */
 
 bool
 crc_optimization::optimize_crc_loop (gphi *output_crc)

Reply via email to