summaryrefslogtreecommitdiff
path: root/gcc/ipa-pure-const.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/ipa-pure-const.c')
-rw-r--r--gcc/ipa-pure-const.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/gcc/ipa-pure-const.c b/gcc/ipa-pure-const.c
index 9963b39f461..52be4bf8869 100644
--- a/gcc/ipa-pure-const.c
+++ b/gcc/ipa-pure-const.c
@@ -743,7 +743,7 @@ analyze_function (struct cgraph_node *fn, bool ipa)
if (dump_file)
{
fprintf (dump_file, "\n\n local analysis of %s\n ",
- cgraph_node_name (fn));
+ fn->name ());
}
push_cfun (DECL_STRUCT_FUNCTION (decl));
@@ -1038,7 +1038,7 @@ pure_const_read_summary (void)
{
int flags = flags_from_decl_or_type (node->decl);
fprintf (dump_file, "Read info for %s/%i ",
- cgraph_node_name (node),
+ node->name (),
node->order);
if (flags & ECF_CONST)
fprintf (dump_file, " const");
@@ -1138,7 +1138,7 @@ propagate_pure_const (void)
funct_state w_l = get_function_state (w);
if (dump_file && (dump_flags & TDF_DETAILS))
fprintf (dump_file, " Visiting %s/%i state:%s looping %i\n",
- cgraph_node_name (w),
+ w->name (),
w->order,
pure_const_names[w_l->pure_const_state],
w_l->looping);
@@ -1185,7 +1185,7 @@ propagate_pure_const (void)
{
fprintf (dump_file,
" Call to %s/%i",
- cgraph_node_name (e->callee),
+ e->callee->name (),
e->callee->order);
}
if (avail > AVAIL_OVERWRITABLE)
@@ -1331,7 +1331,7 @@ propagate_pure_const (void)
if (dump_file)
fprintf (dump_file, "Function found to be %sconst: %s\n",
this_looping ? "looping " : "",
- cgraph_node_name (w));
+ w->name ());
}
cgraph_set_const_flag (w, true, this_looping);
break;
@@ -1343,7 +1343,7 @@ propagate_pure_const (void)
if (dump_file)
fprintf (dump_file, "Function found to be %spure: %s\n",
this_looping ? "looping " : "",
- cgraph_node_name (w));
+ w->name ());
}
cgraph_set_pure_flag (w, true, this_looping);
break;
@@ -1446,7 +1446,7 @@ propagate_nothrow (void)
cgraph_set_nothrow_flag (w, true);
if (dump_file)
fprintf (dump_file, "Function found to be nothrow: %s\n",
- cgraph_node_name (w));
+ w->name ());
}
else if (can_throw && !TREE_NOTHROW (w->decl))
w_l->can_throw = true;