diff options
Diffstat (limited to 'gcc/tree-cfg.c')
-rw-r--r-- | gcc/tree-cfg.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree-cfg.c b/gcc/tree-cfg.c index c468b64..fd6d1c7 100644 --- a/gcc/tree-cfg.c +++ b/gcc/tree-cfg.c @@ -1270,7 +1270,7 @@ replace_uses_by (tree name, tree val) rhs = get_rhs (stmt); if (TREE_CODE (rhs) == ADDR_EXPR) - recompute_tree_invarant_for_addr_expr (rhs); + recompute_tree_invariant_for_addr_expr (rhs); /* If the statement could throw and now cannot, we need to prune cfg. */ if (maybe_clean_or_replace_eh_stmt (stmt, stmt)) @@ -3193,7 +3193,7 @@ verify_expr (tree *tp, int *walk_subtrees, void *data ATTRIBUTE_UNUSED) old_constant = TREE_CONSTANT (t); old_side_effects = TREE_SIDE_EFFECTS (t); - recompute_tree_invarant_for_addr_expr (t); + recompute_tree_invariant_for_addr_expr (t); new_invariant = TREE_INVARIANT (t); new_side_effects = TREE_SIDE_EFFECTS (t); new_constant = TREE_CONSTANT (t); |