diff options
author | reichelt <reichelt@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-02-24 21:47:26 +0000 |
---|---|---|
committer | reichelt <reichelt@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-02-24 21:47:26 +0000 |
commit | 822e391f5e0b9d59c77dce31ac9eafc807b4e096 (patch) | |
tree | 42ae786e6a9fe0fcb904dc11ee9e36ca7e2eb8a5 /gcc/tree-ssa-dom.c | |
parent | 349393288602ef00c04a3cc9e7f503b5692ba7a9 (diff) | |
download | gcc-822e391f5e0b9d59c77dce31ac9eafc807b4e096.tar.gz |
* ChangeLog.5: Fix log message typo(s).
* ChangeLog.7: Likewise.
* ChangeLog.tree-ssa: Likewise.
* cfgexpand.c: Fix comment typo(s).
* conflict.c: Likewise.
* defaults.h: Likewise.
* dwarf2out.c: Likewise.
* gcse.c: Likewise.
* ggc-page.c: Likewise.
* tree-eh.c: Likewise.
* tree-ssa-dom.c: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@95516 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-ssa-dom.c')
-rw-r--r-- | gcc/tree-ssa-dom.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree-ssa-dom.c b/gcc/tree-ssa-dom.c index 88c7f92fd4b..59d51c0e8a3 100644 --- a/gcc/tree-ssa-dom.c +++ b/gcc/tree-ssa-dom.c @@ -181,7 +181,7 @@ static struct opt_stats_d opt_stats; of the form SSA_NAME COND CONST we create a new vrp_element to record how the condition affects the possible values SSA_NAME may have. - Each record contains the condition tested (COND), and the the range of + Each record contains the condition tested (COND), and the range of values the variable may legitimately have if COND is true. Note the range of values may be a smaller range than COND specifies if we have recorded other ranges for this variable. Each record also contains the @@ -1398,7 +1398,7 @@ record_cond (tree cond, tree value) /* Build a new conditional using NEW_CODE, OP0 and OP1 and store the new conditional into *p, then store a boolean_true_node - into the the *(p + 1). */ + into *(p + 1). */ static void build_and_record_new_cond (enum tree_code new_code, tree op0, tree op1, tree *p) |