diff mbox

Patch committed: Fix typo in comment in tree-vrp.c

Message ID CAOyqgcU8vRKM+GfeBk+vucnndUg6ypTmuZ2T8aDPOnLbpFrdgA@mail.gmail.com
State New
Headers show

Commit Message

Ian Lance Taylor Oct. 23, 2014, 10:48 p.m. UTC
This patch fixes a typo in a comment in tree-vrp.c.  Committed as obvious.

Ian


2014-10-23  Ian Lance Taylor  <iant@google.com>

* tree-vrp.c (extract_range_from_assert): Fix typo in comment.
diff mbox

Patch

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);