diff options
Diffstat (limited to 'gcc/gimple.c')
-rw-r--r-- | gcc/gimple.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/gimple.c b/gcc/gimple.c index 488f8c82b82..3a32b530cce 100644 --- a/gcc/gimple.c +++ b/gcc/gimple.c @@ -117,7 +117,7 @@ gimple_size (enum gimple_code code) operands. */ gimple * -gimple_alloc_stat (enum gimple_code code, unsigned num_ops MEM_STAT_DECL) +gimple_alloc (enum gimple_code code, unsigned num_ops MEM_STAT_DECL) { size_t size; gimple *stmt; @@ -169,7 +169,7 @@ static gimple * gimple_build_with_ops_stat (enum gimple_code code, unsigned subcode, unsigned num_ops MEM_STAT_DECL) { - gimple *s = gimple_alloc_stat (code, num_ops PASS_MEM_STAT); + gimple *s = gimple_alloc (code, num_ops PASS_MEM_STAT); gimple_set_subcode (s, subcode); return s; @@ -796,7 +796,7 @@ gimple_build_eh_dispatch (int region) VAR is bound to VALUE; block and location are taken from STMT. */ gdebug * -gimple_build_debug_bind_stat (tree var, tree value, gimple *stmt MEM_STAT_DECL) +gimple_build_debug_bind (tree var, tree value, gimple *stmt MEM_STAT_DECL) { gdebug *p = as_a <gdebug *> (gimple_build_with_ops_stat (GIMPLE_DEBUG, @@ -816,7 +816,7 @@ gimple_build_debug_bind_stat (tree var, tree value, gimple *stmt MEM_STAT_DECL) VAR is bound to VALUE; block and location are taken from STMT. */ gdebug * -gimple_build_debug_source_bind_stat (tree var, tree value, +gimple_build_debug_source_bind (tree var, tree value, gimple *stmt MEM_STAT_DECL) { gdebug *p @@ -1613,7 +1613,7 @@ gimple_assign_set_rhs_with_ops (gimple_stmt_iterator *gsi, enum tree_code code, gimple *new_stmt = gimple_alloc (gimple_code (stmt), new_rhs_ops + 1); memcpy (new_stmt, stmt, gimple_size (gimple_code (stmt))); gimple_init_singleton (new_stmt); - gsi_replace (gsi, new_stmt, true); + gsi_replace (gsi, new_stmt, false); stmt = new_stmt; /* The LHS needs to be reset as this also changes the SSA name |