From 24500bbaac87c5e55ded55cb1d4aabca89be1649 Mon Sep 17 00:00:00 2001 From: tschwinge Date: Thu, 24 Sep 2015 09:27:12 +0000 Subject: Additional changes to switch from gimple to gimple * gcc/ * tree-object-size.c (plus_stmt_object_size) (cond_expr_object_size): Change the formal parameters from gimple to gimple *. * tree-ssa-sccvn.h (vn_nary_op_insert_stmt): Likewise. * tree-ssa-sccvn.c (vn_nary_op_insert_stmt): Make it static. * tree-ssa-sccvn.h (vn_nary_op_insert_stmt): Don't declare. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@228080 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/tree-ssa-alias.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gcc/tree-ssa-alias.c') diff --git a/gcc/tree-ssa-alias.c b/gcc/tree-ssa-alias.c index f3674ae5eee..5ff2275c079 100644 --- a/gcc/tree-ssa-alias.c +++ b/gcc/tree-ssa-alias.c @@ -76,12 +76,12 @@ along with GCC; see the file COPYING3. If not see The main alias-oracle entry-points are - bool stmt_may_clobber_ref_p (gimple, tree) + bool stmt_may_clobber_ref_p (gimple *, tree) This function queries if a statement may invalidate (parts of) the memory designated by the reference tree argument. - bool ref_maybe_used_by_stmt_p (gimple, tree) + bool ref_maybe_used_by_stmt_p (gimple *, tree) This function queries if a statement may need (parts of) the memory designated by the reference tree argument. -- cgit v1.2.1