From bb7f98d2695af789cffdad5a19f04c2b48d7f240 Mon Sep 17 00:00:00 2001 From: Jakub Jelinek Date: Thu, 12 Dec 2024 11:26:14 +0100 Subject: [PATCH] crc: Comment spelling fix "replacement is succeeded" doesn't look correct, this patch drops the is. 2024-12-12 Jakub Jelinek * gimple-crc-optimization.cc (crc_optimization::optimize_crc_loop): Comment spelling fix, is succeeded -> succeeded. --- 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) -- 2.47.2