From: Kazu Hirata Date: Mon, 30 May 2005 15:23:54 +0000 (+0000) Subject: * tree-ssa-ccp.c (const_val): Make it static. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=404f4351485096dd6d3192a0af2ccf76bcbe2874;p=gcc.git * tree-ssa-ccp.c (const_val): Make it static. From-SVN: r100361 --- 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 + + * tree-ssa-ccp.c (const_val): Make it static. + 2005-05-29 Geoffrey Keating 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;