aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2005-05-30 15:23:54 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2005-05-30 15:23:54 +0000
commit404f4351485096dd6d3192a0af2ccf76bcbe2874 (patch)
tree184b9d5b19041baed43e4c96f30764751dcd4cc4 /gcc
parentd83d092e979ac962b36f43f0465f4dae6a1f5103 (diff)
downloadgcc-404f4351485096dd6d3192a0af2ccf76bcbe2874.zip
gcc-404f4351485096dd6d3192a0af2ccf76bcbe2874.tar.gz
gcc-404f4351485096dd6d3192a0af2ccf76bcbe2874.tar.bz2
* tree-ssa-ccp.c (const_val): Make it static.
From-SVN: r100361
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/tree-ssa-ccp.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 8a1f571..0aac969 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+2005-05-30 Kazu Hirata <kazu@cs.umass.edu>
+
+ * tree-ssa-ccp.c (const_val): Make it static.
+
2005-05-29 Geoffrey Keating <geoffk@apple.com>
PR target/21761
diff --git a/gcc/tree-ssa-ccp.c b/gcc/tree-ssa-ccp.c
index f3db346..47709d0 100644
--- a/gcc/tree-ssa-ccp.c
+++ b/gcc/tree-ssa-ccp.c
@@ -228,7 +228,7 @@ typedef enum
(i.e., a V_MAY_DEF or V_MUST_DEF), CONST_VAL[I].MEM_REF will
contain the actual memory reference used to store (i.e., the LHS of
the assignment doing the store). */
-prop_value_t *const_val;
+static prop_value_t *const_val;
/* True if we are also propagating constants in stores and loads. */
static bool do_store_ccp;