diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-05-04 17:15:31 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-05-04 17:15:31 +0000 |
commit | d15713f9b684181aa673a60145e66dd1befc5a1d (patch) | |
tree | 9f36a787a3f3346ad83db21e2bfd57726ec9694a /gcc/tree-vn.c | |
parent | 2e5ed910019859bb792a6eb7ce66d637681e9827 (diff) | |
download | gcc-d15713f9b684181aa673a60145e66dd1befc5a1d.tar.gz |
* tree-flow-inline.h, tree-ssa-operands.c,
tree-ssa-operands.h, tree-ssa-opfinalize.h:
Likewise. tree-vn.c: Fix comment typos.
* doc/passes.texi, doc/tree-ssa.texi: Fix typos.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@99220 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-vn.c')
-rw-r--r-- | gcc/tree-vn.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/tree-vn.c b/gcc/tree-vn.c index c1178e382b1..5f003720e4d 100644 --- a/gcc/tree-vn.c +++ b/gcc/tree-vn.c @@ -175,7 +175,7 @@ set_value_handle (tree e, tree v) /* Insert EXPR into VALUE_TABLE with value VAL, and add expression - EXPR to the value set for value VAL. STMT represent the stmt + EXPR to the value set for value VAL. STMT represents the stmt associated with EXPR. It is used when computing a hash value for EXPR. */ void @@ -202,7 +202,7 @@ vn_add (tree expr, tree val, tree stmt) /* Search in VALUE_TABLE for an existing instance of expression EXPR, and return its value, or NULL if none has been set. STMT - represent the stmt associated with EXPR. It is arused when computing the + represents the stmt associated with EXPR. It is used when computing the hash value for EXPR. */ tree @@ -228,7 +228,7 @@ vn_lookup (tree expr, tree stmt) /* Like vn_lookup, but creates a new value for expression EXPR, if EXPR doesn't already have a value. Return the existing/created - value for EXPR. STMT represent the stmt associated with EXPR. It is used + value for EXPR. STMT represents the stmt associated with EXPR. It is used when computing the hash value for EXPR. */ tree |