diff options
Diffstat (limited to 'gcc/tree-ssa-alias.c')
-rw-r--r-- | gcc/tree-ssa-alias.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree-ssa-alias.c b/gcc/tree-ssa-alias.c index 5a8f7bd..2910374 100644 --- a/gcc/tree-ssa-alias.c +++ b/gcc/tree-ssa-alias.c @@ -1710,7 +1710,7 @@ ref_maybe_used_by_call_p_1 (gimple call, ao_ref *ref) && TREE_CODE (base) == VAR_DECL && TREE_STATIC (base)) { - struct cgraph_node *node = cgraph_get_node (callee); + struct cgraph_node *node = cgraph_node::get (callee); bitmap not_read; /* FIXME: Callee can be an OMP builtin that does not have a call graph @@ -2078,7 +2078,7 @@ call_may_clobber_ref_p_1 (gimple call, ao_ref *ref) && TREE_CODE (base) == VAR_DECL && TREE_STATIC (base)) { - struct cgraph_node *node = cgraph_get_node (callee); + struct cgraph_node *node = cgraph_node::get (callee); bitmap not_written; if (node |