diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2005-05-04 17:15:31 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2005-05-04 17:15:31 +0000 |
commit | 395bda42dda9992410fc66bf655ffe503ef6d75b (patch) | |
tree | 9f36a787a3f3346ad83db21e2bfd57726ec9694a /gcc/tree-vn.c | |
parent | 4268e4cfa2e3720525e68b9b4277cc0bcce5ac5c (diff) | |
download | gcc-395bda42dda9992410fc66bf655ffe503ef6d75b.zip gcc-395bda42dda9992410fc66bf655ffe503ef6d75b.tar.gz gcc-395bda42dda9992410fc66bf655ffe503ef6d75b.tar.bz2 |
tree-flow-inline.h, [...]: Likewise.
* 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.
From-SVN: r99220
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 c1178e3..5f00372 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 |