summaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>2005-05-30 15:23:54 +0000
committerkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>2005-05-30 15:23:54 +0000
commit2014040643f2c80cb8a5ca302b16c546c42b5f16 (patch)
tree184b9d5b19041baed43e4c96f30764751dcd4cc4 /gcc
parent42d5fe76b0c53ae05e7d054c7412d6268347f272 (diff)
downloadgcc-2014040643f2c80cb8a5ca302b16c546c42b5f16.tar.gz
* tree-ssa-ccp.c (const_val): Make it static.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@100361 138bc75d-0d04-0410-961f-82ee72b054a4
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 8a1f571f87f..0aac9693e61 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 f3db346bf6b..47709d01aba 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;