diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-11-06 19:59:19 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-11-06 19:59:19 +0000 |
commit | 1c952c2c5db7fa13d9d9f5676fd44093accc9d1d (patch) | |
tree | 83adde65876fdbedce7e05599f28e214a7675dd1 /gcc/tree-ssa-copyrename.c | |
parent | cec0d54df84b3d2d9bdbdb46e86af53b98ce3d13 (diff) | |
download | gcc-1c952c2c5db7fa13d9d9f5676fd44093accc9d1d.tar.gz |
* tree-ssa-copyrename.c (rename_ssa_copies): Make it static.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@90191 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-ssa-copyrename.c')
-rw-r--r-- | gcc/tree-ssa-copyrename.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gcc/tree-ssa-copyrename.c b/gcc/tree-ssa-copyrename.c index 7495c6b8753..393bfb600c6 100644 --- a/gcc/tree-ssa-copyrename.c +++ b/gcc/tree-ssa-copyrename.c @@ -39,8 +39,6 @@ Boston, MA 02111-1307, USA. */ #include "tree-pass.h" #include "langhooks.h" -extern void rename_ssa_copies (void); - /* The following routines implement the SSA copy renaming phase. This optimization looks for copies between 2 SSA_NAMES, either through a @@ -293,7 +291,7 @@ copy_rename_partition_coalesce (var_map map, tree var1, tree var2, FILE *debug) then cause the SSA->normal pass to attempt to coalesce them all to the same variable. */ -void +static void rename_ssa_copies (void) { var_map map; |