diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-05-30 15:23:54 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-05-30 15:23:54 +0000 |
commit | 2014040643f2c80cb8a5ca302b16c546c42b5f16 (patch) | |
tree | 184b9d5b19041baed43e4c96f30764751dcd4cc4 /gcc | |
parent | 42d5fe76b0c53ae05e7d054c7412d6268347f272 (diff) | |
download | gcc-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/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/tree-ssa-ccp.c | 2 |
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; |