aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2004-11-06 19:59:19 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2004-11-06 19:59:19 +0000
commit5bd92c6d98f670e7d13195551b1e7d1ca5199595 (patch)
tree83adde65876fdbedce7e05599f28e214a7675dd1 /gcc
parent29a74354b004a576e785946c752a16c26d5e7281 (diff)
downloadgcc-5bd92c6d98f670e7d13195551b1e7d1ca5199595.zip
gcc-5bd92c6d98f670e7d13195551b1e7d1ca5199595.tar.gz
gcc-5bd92c6d98f670e7d13195551b1e7d1ca5199595.tar.bz2
* tree-ssa-copyrename.c (rename_ssa_copies): Make it static.
From-SVN: r90191
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/tree-ssa-copyrename.c4
2 files changed, 5 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index c9f797b..750b7af 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+2004-11-06 Kazu Hirata <kazu@cs.umass.edu>
+
+ * tree-ssa-copyrename.c (rename_ssa_copies): Make it static.
+
2004-11-06 Ulrich Weigand <uweigand@de.ibm.com>
* config/s390/2064.md ("z_int", "z_agen"): Ensure the condition
diff --git a/gcc/tree-ssa-copyrename.c b/gcc/tree-ssa-copyrename.c
index 7495c6b..393bfb6 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;