This patch fixes a typo in a comment in tree-vrp.c. Committed as obvious. Ian
2014-10-23 Ian Lance Taylor <i...@google.com> * tree-vrp.c (extract_range_from_assert): Fix typo in comment.
Index: gcc/tree-vrp.c =================================================================== --- gcc/tree-vrp.c (revision 216604) +++ gcc/tree-vrp.c (working copy) @@ -1718,7 +1718,7 @@ extract_range_from_assert (value_range_t /* Make sure to not set TREE_OVERFLOW on the final type conversion. We are willingly interpreting large positive - unsigned values as negative singed values here. */ + unsigned values as negative signed values here. */ min = force_fit_type (TREE_TYPE (var), wi::to_widest (min), 0, false); max = force_fit_type (TREE_TYPE (var), wi::to_widest (max), 0, false);