From: law Date: Thu, 14 Jan 2016 21:43:20 +0000 (+0000) Subject: Re: [PATCH][PR tree-optimization/69270] Exploit VRP information in DOM X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b84f3b2cf4fbf5fd70f00b8b41f0c5608d467631;p=thirdparty%2Fgcc.git Re: [PATCH][PR tree-optimization/69270] Exploit VRP information in DOM * tree-ssa-dom.c (ssa_name_has_boolean_range): Fix comment typo. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@232391 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ba70e825e810..703658359778 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2016-01-14 Jeff Law + + * tree-ssa-dom.c (ssa_name_has_boolean_range): Fix comment + typo. + 2016-01-14 Richard Henderson PR c/69272 diff --git a/gcc/tree-ssa-dom.c b/gcc/tree-ssa-dom.c index a9abed9a903d..da4faca9cf85 100644 --- a/gcc/tree-ssa-dom.c +++ b/gcc/tree-ssa-dom.c @@ -320,8 +320,8 @@ record_conditions (struct edge_info *edge_info, tree cond, tree inverted) otherwise. This can be because it is a boolean type, any type with - a single bit of precision, or has known range of values - it might old of [0..1] via VRP analysis. */ + a single bit of precision, or has known range of [0..1] + via VRP analysis. */ static bool ssa_name_has_boolean_range (tree op)