diff options
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 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; |