diff options
Diffstat (limited to 'gcc/tree-ssa-loop-manip.c')
-rw-r--r-- | gcc/tree-ssa-loop-manip.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/tree-ssa-loop-manip.c b/gcc/tree-ssa-loop-manip.c index db6f25f..eb98b42 100644 --- a/gcc/tree-ssa-loop-manip.c +++ b/gcc/tree-ssa-loop-manip.c @@ -92,8 +92,8 @@ create_iv (tree base, tree step, tree var, struct loop *loop, if (var != NULL_TREE) { - vb = make_ssa_name (var, NULL); - va = make_ssa_name (var, NULL); + vb = make_ssa_name (var); + va = make_ssa_name (var); } else { @@ -1158,11 +1158,11 @@ tree_transform_and_unroll_loop (struct loop *loop, unsigned factor, if (TREE_CODE (next) == SSA_NAME && useless_type_conversion_p (TREE_TYPE (next), TREE_TYPE (init))) - new_init = copy_ssa_name (next, NULL); + new_init = copy_ssa_name (next); else if (TREE_CODE (init) == SSA_NAME && useless_type_conversion_p (TREE_TYPE (init), TREE_TYPE (next))) - new_init = copy_ssa_name (init, NULL); + new_init = copy_ssa_name (init); else if (useless_type_conversion_p (TREE_TYPE (next), TREE_TYPE (init))) new_init = make_temp_ssa_name (TREE_TYPE (next), NULL, "unrinittmp"); else |