diff options
author | Eric Christopher <echristo@gcc.gnu.org> | 2006-04-22 01:23:09 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gcc.gnu.org> | 2006-04-22 01:23:09 +0000 |
commit | d1c788827fae72b7119230a1963d41d5655b3824 (patch) | |
tree | b2c43279918e6cfbb7f06ce194472ec644d9e7b4 /gcc/tree-outof-ssa.c | |
parent | 37073529315668ac41eca8c137b03eed6293dfab (diff) | |
download | gcc-d1c788827fae72b7119230a1963d41d5655b3824.zip gcc-d1c788827fae72b7119230a1963d41d5655b3824.tar.gz gcc-d1c788827fae72b7119230a1963d41d5655b3824.tar.bz2 |
decl.c: Fix typo in function name.
2006-04-21 Eric Christopher <echristo@apple.com>
* decl.c: Fix typo in function name.
2006-04-21 Eric Christopher <echristo@apple.com>
* df-core.c, tree-outof-ssa.c, config/i386/i386.c: Fix typos
in comments and function names.
From-SVN: r113167
Diffstat (limited to 'gcc/tree-outof-ssa.c')
-rw-r--r-- | gcc/tree-outof-ssa.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/tree-outof-ssa.c b/gcc/tree-outof-ssa.c index 32f3544..e41b0ff 100644 --- a/gcc/tree-outof-ssa.c +++ b/gcc/tree-outof-ssa.c @@ -1321,7 +1321,7 @@ static inline void add_value_to_list (temp_expr_table_p, value_expr_p *, int); static inline void add_info_to_list (temp_expr_table_p, value_expr_p *, value_expr_p); static value_expr_p remove_value_from_list (value_expr_p *, int); -static void add_dependance (temp_expr_table_p, int, tree); +static void add_dependence (temp_expr_table_p, int, tree); static bool check_replaceable (temp_expr_table_p, tree); static void finish_expr (temp_expr_table_p, int, bool); static void mark_replaceable (temp_expr_table_p, tree); @@ -1510,7 +1510,7 @@ remove_value_from_list (value_expr_p *list, int value) expression table. */ static void -add_dependance (temp_expr_table_p tab, int version, tree var) +add_dependence (temp_expr_table_p tab, int version, tree var) { int i, x; value_expr_p info; @@ -1593,7 +1593,7 @@ check_replaceable (temp_expr_table_p tab, tree stmt) /* Add this expression to the dependency list for each use partition. */ FOR_EACH_SSA_TREE_OPERAND (var, stmt, iter, SSA_OP_USE) { - add_dependance (tab, version, var); + add_dependence (tab, version, var); use_vars = tab->expr_vars[SSA_NAME_VERSION (var)]; if (use_vars) |