]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Fix typo in comment in tree-vrp.cc
authorJonathan Wakely <jwakely@redhat.com>
Thu, 22 Jan 2026 12:38:08 +0000 (12:38 +0000)
committerJonathan Wakely <redi@gcc.gnu.org>
Thu, 22 Jan 2026 12:41:32 +0000 (12:41 +0000)
gcc/ChangeLog:

* tree-vrp.cc (remove_unreachable::fully_replaceable): Fix typo
in comment.

gcc/tree-vrp.cc

index bee9cd9647ede595bbba51375399e530025df72e..e080af5fcaa61fd03519aea73be26f6191526d36 100644 (file)
@@ -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.