diff options
author | Andrew MacLeod <amacleod@redhat.com> | 2022-05-25 10:39:31 -0400 |
---|---|---|
committer | Andrew MacLeod <amacleod@redhat.com> | 2022-05-25 10:39:31 -0400 |
commit | 761cc32e5a1c762f91904d2a86980f106a5bc441 (patch) | |
tree | 48dbc655038fc8eb8c399c1ff3cab64b31dc049e /gcc/gimple-range.cc | |
parent | 156d7d8dbc8d65d3958486bc4112a7279935e47d (diff) | |
download | gcc-761cc32e5a1c762f91904d2a86980f106a5bc441.zip gcc-761cc32e5a1c762f91904d2a86980f106a5bc441.tar.gz gcc-761cc32e5a1c762f91904d2a86980f106a5bc441.tar.bz2 |
Tweak comments.
Adjust some mispellings in comments.
* gimple-range-cache.cc: Adjust comments.
* gimple-range-infer.cc: Adjust comments.
* gimple-range-infer.h: Adjust comments.
* gimple-range.cc: Adjust comments.
Diffstat (limited to 'gcc/gimple-range.cc')
-rw-r--r-- | gcc/gimple-range.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/gimple-range.cc b/gcc/gimple-range.cc index 08a9c01..53f4865 100644 --- a/gcc/gimple-range.cc +++ b/gcc/gimple-range.cc @@ -118,7 +118,7 @@ gimple_ranger::range_of_expr (irange &r, tree expr, gimple *stmt) // If name is defined in this block, try to get an range from S. if (def_stmt && gimple_bb (def_stmt) == bb) { - // Declared in ths block, if it has a global set, check for an + // Declared in this block, if it has a global set, check for an // override from a block walk, otherwise calculate it. if (m_cache.get_global_range (r, expr)) m_cache.block_range (r, bb, expr, false); |