diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2004-11-26 15:42:36 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2004-11-26 15:42:36 +0000 |
commit | 6668f6a735b8a7f59a2600d7f8b961597e9b8040 (patch) | |
tree | 0760a9fe2ad196a0053b9716ab71701b4883bb70 /gcc/tree-ssa-operands.c | |
parent | c5145ceba16b859a432204a4a96788cbdc4726b2 (diff) | |
download | gcc-6668f6a735b8a7f59a2600d7f8b961597e9b8040.zip gcc-6668f6a735b8a7f59a2600d7f8b961597e9b8040.tar.gz gcc-6668f6a735b8a7f59a2600d7f8b961597e9b8040.tar.bz2 |
* cse.c, tree-ssa-operands.c: Fix comment typos.
From-SVN: r91339
Diffstat (limited to 'gcc/tree-ssa-operands.c')
-rw-r--r-- | gcc/tree-ssa-operands.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/tree-ssa-operands.c b/gcc/tree-ssa-operands.c index 9138e67..94a83d0 100644 --- a/gcc/tree-ssa-operands.c +++ b/gcc/tree-ssa-operands.c @@ -120,7 +120,7 @@ static GTY (()) varray_type build_v_must_defs; bool ssa_call_clobbered_cache_valid; bool ssa_ro_call_cache_valid; -/* These arrays are the cached operand vectors for call clobberd calls. */ +/* These arrays are the cached operand vectors for call clobbered calls. */ static GTY (()) varray_type clobbered_v_may_defs; static GTY (()) varray_type clobbered_vuses; static GTY (()) varray_type ro_call_vuses; @@ -1709,7 +1709,7 @@ add_call_clobber_ops (tree stmt) s_ann->makes_aliased_stores = empty_ann.makes_aliased_stores; } - /* Perpare empty cache vectors. */ + /* Prepare empty cache vectors. */ if (clobbered_v_may_defs) { VARRAY_POP_ALL (clobbered_vuses); @@ -1780,7 +1780,7 @@ add_call_read_ops (tree stmt) if (s_ann) s_ann->makes_aliased_loads = empty_ann.makes_aliased_loads; - /* Perpare empty cache vectors. */ + /* Prepare empty cache vectors. */ if (ro_call_vuses) VARRAY_POP_ALL (ro_call_vuses); else |