diff options
author | Jeff Law <law@redhat.com> | 2016-01-14 14:43:20 -0700 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 2016-01-14 14:43:20 -0700 |
commit | cf73ed7b40cfd6dc0b41fa9a5781088e998a0001 (patch) | |
tree | adddfe9c19664288e4e826f9c7044adbd42b01e9 | |
parent | 47c147b03f38ea4218847a77e719584ad47e7d89 (diff) | |
download | gcc-cf73ed7b40cfd6dc0b41fa9a5781088e998a0001.tar.gz |
Re: [PATCH][PR tree-optimization/69270] Exploit VRP information in DOM
* tree-ssa-dom.c (ssa_name_has_boolean_range): Fix comment
typo.
From-SVN: r232391
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/tree-ssa-dom.c | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ba70e825e81..70365835977 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2016-01-14 Jeff Law <law@redhat.com> + + * tree-ssa-dom.c (ssa_name_has_boolean_range): Fix comment + typo. + 2016-01-14 Richard Henderson <rth@redhat.com> PR c/69272 diff --git a/gcc/tree-ssa-dom.c b/gcc/tree-ssa-dom.c index a9abed9a903..da4faca9cf8 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) |