gcc: Fix comment typo

gcc/ChangeLog:

	* value-range.cc (irange::irange_contains_p): Fix comment typo.
This commit is contained in:
Jonathan Wakely 2022-10-07 12:20:36 +01:00
parent 8e2f453de3
commit df78e15233

View file

@ -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];