https://gcc.gnu.org/g:4295f32fc9feebc394099e3b1137c9fea0d99707
commit r16-6977-g4295f32fc9feebc394099e3b1137c9fea0d99707 Author: Jonathan Wakely <[email protected]> Date: Thu Jan 22 12:38:08 2026 +0000 Fix typo in comment in tree-vrp.cc gcc/ChangeLog: * tree-vrp.cc (remove_unreachable::fully_replaceable): Fix typo in comment. Diff: --- gcc/tree-vrp.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/tree-vrp.cc b/gcc/tree-vrp.cc index bee9cd9647ed..e080af5fcaa6 100644 --- a/gcc/tree-vrp.cc +++ b/gcc/tree-vrp.cc @@ -191,7 +191,7 @@ remove_unreachable::fully_replaceable (tree name, basic_block bb) // side effects (like being passed to a call, or stored to a global, etc. // This means we will miss cases where there are 2 or more uses that have // no interveneing statements that may had side effects, but it catches most -// of the caes we care about, and prevents expensive in depth analysis. +// of the cases we care about, and prevents expensive in depth analysis. // // Ranger will still reflect the proper ranges at other places in these missed // cases, we simply will not remove/set globals early.
