From: Jakub Jelinek Date: Thu, 12 Dec 2024 10:26:14 +0000 (+0100) Subject: crc: Comment spelling fix X-Git-Tag: basepoints/gcc-16~3394 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bb7f98d2695af789cffdad5a19f04c2b48d7f240;p=thirdparty%2Fgcc.git 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. --- 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)