diff options
author | Richard Kenner <kenner@vlsi1.ultra.nyu.edu> | 2001-10-25 12:55:16 +0000 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 2001-10-25 08:55:16 -0400 |
commit | 10b76d739543e54113cdb8755ba624c03bae4239 (patch) | |
tree | 0f9f09ded135324a3c1a35af13611e762d6e0cf3 /gcc/alias.c | |
parent | 9fb60a0d1a7af546cce200d38315019b1e026a89 (diff) | |
download | gcc-10b76d739543e54113cdb8755ba624c03bae4239.tar.gz |
alias.c (can_address_p): No longer static.
* alias.c (can_address_p): No longer static.
* emit-rtl.c (get_mem_attrs): New parameter, MODE; all callers changed.
Return 0 if all parameters are default values.
(set_mem_attributes): Set MEM_KEEP_ALIAS_SET_P.
(adjust_address_1): Try harder to compute a size.
* expr.c (expand_assignment, store_constructor): If can't address,
set MEM_KEEP_ALIAS_SET_P.
(store_constructor_field): Don't change set if MEM_KEEP_ALIAS_SET_P.
(store_field): Likewise.
(store_constructor): Simplify call to store_constructor_field.
* expr.h (can_address_p): New declaration.
* gensupport.c (gen_rtx_CONST_INT): New function.
* rtl.h (MEM_KEEP_ALIAS_SET_P): New macro.
(MEM_SIZE): Get size from mode, if not set and not BLKmode.
(MEM_COPY_ATTRIBUTES): Copy MEM_KEEP_ALIAS_SET_P.
From-SVN: r46487
Diffstat (limited to 'gcc/alias.c')
-rw-r--r-- | gcc/alias.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/alias.c b/gcc/alias.c index 3de48b2973b..c754e6e50a1 100644 --- a/gcc/alias.c +++ b/gcc/alias.c @@ -95,7 +95,6 @@ static rtx find_base_term PARAMS ((rtx)); static int base_alias_check PARAMS ((rtx, rtx, enum machine_mode, enum machine_mode)); static int handled_component_p PARAMS ((tree)); -static int can_address_p PARAMS ((tree)); static rtx find_base_value PARAMS ((rtx)); static int mems_in_disjoint_alias_sets_p PARAMS ((rtx, rtx)); static int insert_subset_children PARAMS ((splay_tree_node, void*)); @@ -426,7 +425,7 @@ handled_component_p (t) /* Return 1 if all the nested component references handled by get_inner_reference in T are such that we can address the object in T. */ -static int +int can_address_p (t) tree t; { |