gcc: Fix comment typo
authorJonathan Wakely <jwakely@redhat.com>
Fri, 7 Oct 2022 11:20:36 +0000 (12:20 +0100)
committerJonathan Wakely <jwakely@redhat.com>
Fri, 7 Oct 2022 11:22:32 +0000 (12:22 +0100)
gcc/ChangeLog:

* value-range.cc (irange::irange_contains_p): Fix comment typo.

gcc/value-range.cc

index 16105f8..a14f9bc 100644 (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];