From: Jonathan Wakely Date: Fri, 7 Oct 2022 11:20:36 +0000 (+0100) Subject: gcc: Fix comment typo X-Git-Tag: basepoints/gcc-14~4049 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=df78e15233c1dcf9b935c7380fc95359ebcc5562;p=thirdparty%2Fgcc.git gcc: Fix comment typo gcc/ChangeLog: * value-range.cc (irange::irange_contains_p): Fix comment typo. --- diff --git a/gcc/value-range.cc b/gcc/value-range.cc index 16105f876781..a14f9bc43944 100644 --- a/gcc/value-range.cc +++ b/gcc/value-range.cc @@ -2509,7 +2509,7 @@ irange::irange_contains_p (const irange &r) const // Otherwise, check if this's pair occurs before R's. if (wi::lt_p (wi::to_wide (u), wi::to_wide (rl), sign)) { - // There's still at leats one pair of R left. + // There's still at least one pair of R left. if (++i >= num_pairs ()) return false; l = m_base[i * 2];