diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2004-11-08 21:56:03 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2004-11-08 21:56:03 +0000 |
commit | d05eae888facd3c1e07d9da51e0df77c8c1ca5af (patch) | |
tree | 9be97a8e6bb2365366e08afb4d0ba9978e589772 | |
parent | b1b02be234c173b4489a5e42350886aa78659fc0 (diff) | |
download | gcc-d05eae888facd3c1e07d9da51e0df77c8c1ca5af.zip gcc-d05eae888facd3c1e07d9da51e0df77c8c1ca5af.tar.gz gcc-d05eae888facd3c1e07d9da51e0df77c8c1ca5af.tar.bz2 |
tree-ssa-operands.c (build_ssa_operands): Make it static.
* tree-ssa-operands.c (build_ssa_operands): Make it static.
* tree-flow.h: Remove the corresponding prototype.
From-SVN: r90308
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/tree-flow.h | 4 | ||||
-rw-r--r-- | gcc/tree-ssa-operands.c | 2 |
3 files changed, 6 insertions, 5 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 18fab2c..8ece683 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2004-11-08 Kazu Hirata <kazu@cs.umass.edu> + + * tree-ssa-operands.c (build_ssa_operands): Make it static. + * tree-flow.h: Remove the corresponding prototype. + 2004-11-08 Andrew Pinski <pinskia@physics.uc.edu> PR tree-opt/18299 diff --git a/gcc/tree-flow.h b/gcc/tree-flow.h index 9e77fe2..8fabccc 100644 --- a/gcc/tree-flow.h +++ b/gcc/tree-flow.h @@ -733,10 +733,6 @@ void vn_delete (void); /* In tree-sra.c */ void insert_edge_copies (tree stmt, basic_block bb); -/* In tree-ssa-operands.c */ -extern void build_ssa_operands (tree, stmt_ann_t, stmt_operands_p, - stmt_operands_p); - /* In tree-loop-linear.c */ extern void linear_transform_loops (struct loops *); diff --git a/gcc/tree-ssa-operands.c b/gcc/tree-ssa-operands.c index 9161cce..18af264 100644 --- a/gcc/tree-ssa-operands.c +++ b/gcc/tree-ssa-operands.c @@ -811,7 +811,7 @@ append_v_must_def (tree var) <* compare old_ops_copy and new_ops *> free_ssa_operands (old_ops); */ -void +static void build_ssa_operands (tree stmt, stmt_ann_t ann, stmt_operands_p old_ops, stmt_operands_p new_ops) { |