diff options
author | Thomas Schwinge <thomas@codesourcery.com> | 2015-09-24 11:27:12 +0200 |
---|---|---|
committer | Thomas Schwinge <tschwinge@gcc.gnu.org> | 2015-09-24 11:27:12 +0200 |
commit | 60dd79ca89f7eb0c4bded86766c7d17d171aba7f (patch) | |
tree | c407e347c166e74d13bde53fb39cab0f1152c1e8 /gcc/tree-ssa-alias.c | |
parent | bc6e483f764f561e6d10e112e7a352c12695609e (diff) | |
download | gcc-60dd79ca89f7eb0c4bded86766c7d17d171aba7f.zip gcc-60dd79ca89f7eb0c4bded86766c7d17d171aba7f.tar.gz gcc-60dd79ca89f7eb0c4bded86766c7d17d171aba7f.tar.bz2 |
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.
From-SVN: r228080
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 f3674ae..5ff2275 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. |