diff options
Diffstat (limited to 'gcc/cfgexpand.c')
-rw-r--r-- | gcc/cfgexpand.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/cfgexpand.c b/gcc/cfgexpand.c index 8cdf5853a70..c99631708df 100644 --- a/gcc/cfgexpand.c +++ b/gcc/cfgexpand.c @@ -690,8 +690,8 @@ update_alias_info_with_stack_vars (void) as base during alias-oracle queries on RTL for bases that have been partitioned. */ if (var == NULL_TREE) - var = create_tmp_var (ptr_type_node, NULL); - name = make_ssa_name (var, NULL); + var = create_tmp_var (ptr_type_node); + name = make_ssa_name (var); /* Create bitmaps representing partitions. They will be used for points-to sets later, so use GGC alloc. */ @@ -1738,7 +1738,7 @@ expand_used_vars (void) { tree *slot = &ssa_name_decls.get_or_insert (TREE_TYPE (var)); if (!*slot) - *slot = create_tmp_reg (TREE_TYPE (var), NULL); + *slot = create_tmp_reg (TREE_TYPE (var)); replace_ssa_name_symbol (var, *slot); } |